黄学骏
黄学骏
全部文章
题解
归档
标签
去牛客网
登录
/
注册
黄学骏的博客
全部文章
/ 题解
(共3篇)
题解 | #秘密的牛奶运输#
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 510, M = 10010; int n,m; int e[N*2],ne[N*2],w[N*2],h[N],id...
最小生成树
2022-08-16
1
365
题解 | #走廊泼水节#
#include <bits/stdc++.h> using namespace std; const int N = 201000; int n,t; int p[N],cnt[N]; struct Node { int x,y,z; }st[N]; ...
最小生成树
2022-08-13
1
286
题解 | #北极通讯网络#
#include <bits/stdc++.h> using namespace std; typedef double ld; typedef pair <int,int> PII; const int N = 201000; int n,k,idx; ...
最小生成树
2022-08-13
1
410