結果
問題 | No.812 Change of Class |
ユーザー | rodea |
提出日時 | 2020-11-22 16:26:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,798 bytes |
コンパイル時間 | 1,616 ms |
コンパイル使用メモリ | 124,128 KB |
実行使用メモリ | 10,512 KB |
最終ジャッジ日時 | 2024-07-23 16:38:02 |
合計ジャッジ時間 | 9,073 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 24 ms
7,588 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 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 | 10 ms
6,940 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 8 ms
6,944 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 | 64 ms
8,520 KB |
testcase_56 | AC | 76 ms
9,324 KB |
testcase_57 | AC | 82 ms
9,808 KB |
testcase_58 | AC | 42 ms
6,940 KB |
testcase_59 | AC | 92 ms
10,512 KB |
testcase_60 | AC | 2 ms
6,940 KB |
testcase_61 | AC | 2 ms
6,944 KB |
testcase_62 | AC | 2 ms
6,940 KB |
ソースコード
#pragma GCC optimize("O3") #include <iostream> #include <iomanip> #include <cstdio> #include <string> #include <cstring> #include <deque> #include <list> #include <queue> #include <stack> #include <vector> #include <utility> #include <algorithm> #include <map> #include <set> #include <complex> #include <cmath> #include <limits> #include <cfloat> #include <climits> #include <ctime> #include <cassert> #include <numeric> #include <fstream> #include <functional> #include <bitset> using namespace std; using ll = long long; using P = pair<int, int>; using T = tuple<int, int, int>; template <class T> inline T chmax(T &a, const T b) {return a = (a < b) ? b : a;} template <class T> inline T chmin(T &a, const T b) {return a = (a > b) ? b : a;} constexpr int MOD = 1e9 + 7; constexpr int inf = 1e9; constexpr long long INF = 1e18; #define all(a) (a).begin(), (a).end() int dx[] = {1, 0, -1, 0}; int dy[] = {0, 1, 0, -1}; class UnionFind{ public: vector<int> par; vector<int> rank; vector<int> sz; int uf_size; UnionFind(int n){ par.resize(n); rank.resize(n); sz.resize(n); uf_size = n; for(int i=0; i<n; i++){ par[i] = i; rank[i] = 0; sz[i] = 1; } } int find(int x){ if(par[x] == x) return x; else return par[x] = find(par[x]); } bool same(int x, int y){ return find(x) == find(y); } bool unite(int x, int y){ x = find(x); y = find(y); if(x == y) return false; if(rank[x] < rank[y]) swap(x, y); if(rank[x] == rank[y]) rank[x]++; uf_size--; par[y] = x; sz[x] = sz[x] + sz[y]; return true; } int size(int x){ return sz[find(x)]; } }; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, m; cin>>n>>m; vector<vector<int>> G(n); for(int i=0; i<m; i++){ int p, q; cin>>p>>q; p--, q--; G[p].emplace_back(q); G[q].emplace_back(p); } int q; cin>>q; while(q--){ int a; cin>>a; a--; UnionFind uf(n); queue<P> que; que.emplace(a, 0); vector<bool> visited(n, false); visited[a] = true; int madist = 0; while(que.size()){ int cv, dist; tie(cv, dist) = que.front(); que.pop(); chmax(madist, dist); for(auto nv:G[cv]){ if(visited[nv]) continue; visited[nv] = true; uf.unite(cv, nv); que.emplace(nv, dist + 1); } } int day = (madist + 1) / 2; if(madist == 1) day = 0; cout << uf.size(a) - 1 << " " << day << endl; } return 0; }