#10056. 「一本通 2.3 练习 5」The XOR-longest Path
题目描述
有一棵带权树,求这些边组成的路径的最大异或和。
Solution
考场 SPFA 神奇 70 分代码
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<queue>
#include<ctime>
const int MAXN=100010;
usin...
原创
2019-07-19 16:30:31 ·
160 阅读 ·
0 评论