結果
問題 | No.812 Change of Class |
ユーザー | FF256grhy |
提出日時 | 2019-04-12 22:46:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,254 bytes |
コンパイル時間 | 1,665 ms |
コンパイル使用メモリ | 169,740 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-06-12 19:39:38 |
合計ジャッジ時間 | 7,317 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 72 ms
12,032 KB |
testcase_01 | AC | 12 ms
6,812 KB |
testcase_02 | AC | 39 ms
9,088 KB |
testcase_03 | AC | 85 ms
13,184 KB |
testcase_04 | AC | 73 ms
12,288 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 12 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 3 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 | AC | 22 ms
6,944 KB |
testcase_36 | AC | 9 ms
6,940 KB |
testcase_37 | AC | 54 ms
6,944 KB |
testcase_38 | AC | 5 ms
6,940 KB |
testcase_39 | AC | 57 ms
6,940 KB |
testcase_40 | AC | 12 ms
6,940 KB |
testcase_41 | AC | 4 ms
6,944 KB |
testcase_42 | AC | 118 ms
7,936 KB |
testcase_43 | AC | 27 ms
7,168 KB |
testcase_44 | AC | 81 ms
7,168 KB |
testcase_45 | AC | 10 ms
6,944 KB |
testcase_46 | AC | 25 ms
7,168 KB |
testcase_47 | AC | 78 ms
7,296 KB |
testcase_48 | AC | 87 ms
7,680 KB |
testcase_49 | AC | 20 ms
6,944 KB |
testcase_50 | AC | 4 ms
6,940 KB |
testcase_51 | AC | 23 ms
6,944 KB |
testcase_52 | AC | 49 ms
7,220 KB |
testcase_53 | AC | 14 ms
6,940 KB |
testcase_54 | AC | 12 ms
6,944 KB |
testcase_55 | AC | 39 ms
8,064 KB |
testcase_56 | AC | 45 ms
8,344 KB |
testcase_57 | AC | 48 ms
8,444 KB |
testcase_58 | AC | 27 ms
7,164 KB |
testcase_59 | AC | 54 ms
8,956 KB |
testcase_60 | AC | 3 ms
6,948 KB |
testcase_61 | AC | 3 ms
6,940 KB |
testcase_62 | AC | 3 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long signed int LL; typedef long long unsigned int LU; #define incII(i, l, r) for(int i = (l) ; i <= (r); ++i) #define incID(i, l, r) for(int i = (l) ; i < (r); ++i) #define decII(i, l, r) for(int i = (r) ; i >= (l); --i) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i) #define inc(i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec(i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) #define PB push_back #define EB emplace_back #define MP make_pair #define FI first #define SE second #define ALL(v) v.begin(), v.end() #define RALL(v) v.rbegin(), v.rend() template<typename T> bool setmin (T & a, T b) { if(b < a) { a = b; return true; } else { return false; } } template<typename T> bool setmax (T & a, T b) { if(b > a) { a = b; return true; } else { return false; } } template<typename T> bool setmineq(T & a, T b) { if(b <= a) { a = b; return true; } else { return false; } } template<typename T> bool setmaxeq(T & a, T b) { if(b >= a) { a = b; return true; } else { return false; } } LL mo(LL a, LL b) { assert(b > 0); a %= b; if(a < 0) { a += b; } return a; } LL fl(LL a, LL b) { assert(b > 0); return (a > 0 ? a / b : (a - b + 1) / b); } LL ce(LL a, LL b) { assert(b > 0); return (a < 0 ? a / b : (a + b - 1) / b); } #define bit(b, i) (((b) >> (i)) & 1) #define BC __builtin_popcountll #define SC(T, v) static_cast<T>(v) #define SI(v) SC(int, v.size()) #define SL(v) SC( LL, v.size()) #define RF(e, v) for(auto & e: v) #define ei else if #define UR assert(false) // ---- ---- int n, m, q; vector<int> g[100000]; int c, dma; bool vis[100000]; void dfs(int v, int d) { if(exchange(vis[v], true)) { return; } c++; setmax(dma, d); RF(e, g[v]) { dfs(e, d + 1); } } int f(int x) { int c = 0; while(! (x <= (1 << c))) { c++; } return c; } int main() { cin >> n >> m; inc(i, m) { int a, b; cin >> a >> b; a--; b--; g[a].PB(b); g[b].PB(a); } cin >> q; inc(i, q) { int a; cin >> a; a--; c = 0, dma = 0; inc(i, n) { vis[i] = false; } dfs(a, 0); cout << c - 1 << " " << f(dma) << "\n"; } return 0; }