摘要:
分析 我们推不出n=3的图,开始猜测,答案在n 2时无解。( using namespace std; inline int read() { int w=0,x=0;char ch=0; while (!isdigit(ch)) {w|=ch==' ';ch=getchar();} while ( 阅读全文
摘要:
题目描述 这是一道模板题。 维护一个 n 点的无向图,支持: 加入一条连接 u 和 v 的无向边 查询 u 和 v 的连通性 由于本题数据较大,因此输出的时候采用特殊的输出方式:用 0 或 1 代表每个询问的答案,将每个询问的答案依次从左到右排列,把得到的串视为一个二进制数,输出这个二进制数 mod 阅读全文
摘要:
AC代码 cpp include using namespace std; const int MAXN=62000+10,INF=999999; struct Edge{ int u,v,w,next; }edge[MAXN]; int head[MAXN],n,m,s,t,dist[MAXN], 阅读全文
摘要:
AC代码 cpp include using namespace std; define ms(a,b) memset(a,b,sizeof(a)) typedef long long ll; struct Point{ double x,y; }point[20]; int n; double d 阅读全文
摘要:
分析 tarjan算出全部的联通块,在求出联通块里最小的个数。 AC代码 cpp include include include include include include include include using namespace std; define ms(a,b) memset(a, 阅读全文
摘要:
AC代码 cpp include using namespace std; define ms(a,b) memset(a,b,sizeof(a)) typedef long long ll; const int dx[4]={1,0, 1,0}; const int dy[4]={0,1,0, 1 阅读全文
摘要:
" 点击传送" 题目描述 Recently Vasya found a golden ticket — a sequence which consists of nn digits a1a2…ana1a2…an. Vasya considers a ticket to be lucky if it 阅读全文