結果
問題 | No.812 Change of Class |
ユーザー | fura |
提出日時 | 2020-05-30 05:10:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,283 bytes |
コンパイル時間 | 2,459 ms |
コンパイル使用メモリ | 209,532 KB |
実行使用メモリ | 9,900 KB |
最終ジャッジ日時 | 2024-11-06 21:58:37 |
合計ジャッジ時間 | 8,422 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 16 ms
7,436 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 7 ms
6,816 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 6 ms
6,816 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 46 ms
8,100 KB |
testcase_56 | AC | 54 ms
8,752 KB |
testcase_57 | AC | 57 ms
9,132 KB |
testcase_58 | AC | 30 ms
6,820 KB |
testcase_59 | AC | 66 ms
9,900 KB |
testcase_60 | AC | 3 ms
6,820 KB |
testcase_61 | AC | 2 ms
6,816 KB |
testcase_62 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; using graph=vector<vector<int>>; void add_undirected_edge(graph& G,int u,int v){ G[u].emplace_back(v); G[v].emplace_back(u); } vector<int> distance(const graph& G,int s){ const int INF=INT_MAX; int n=G.size(); vector<int> d(n,INF); d[s]=0; queue<int> Q; Q.emplace(s); while(!Q.empty()){ int u=Q.front(); Q.pop(); for(int v:G[u]) if(d[v]==INF) { d[v]=d[u]+1; Q.emplace(v); } } return d; } class union_find{ int n; vector<int> p; public: union_find(int n):n(n),p(n,-1){} int find(int u){ return p[u]<0?u:p[u]=find(p[u]); } void unite(int u,int v){ u=find(u); v=find(v); if(u!=v){ if(p[v]<p[u]) swap(u,v); p[u]+=p[v]; p[v]=u; n--; } } bool is_same(int u,int v){ return find(u)==find(v); } int size()const{ return n; } int size(int u){ return -p[find(u)]; } }; int main(){ int n,m; scanf("%d%d",&n,&m); graph G(n); union_find U(n); rep(i,m){ int u,v; scanf("%d%d",&u,&v); u--; v--; add_undirected_edge(G,u,v); U.unite(u,v); } int q; scanf("%d",&q); rep(_,q){ int s; scanf("%d",&s); s--; auto d=distance(G,s); int mx=0; rep(u,n) if(d[u]<INT_MAX) mx=max(mx,d[u]); printf("%d %d\n",U.size(s)-1,mx==1?0:(mx+1)/2); } return 0; }