結果
問題 | No.1153 ねこちゃんゲーム |
ユーザー | tarattata1 |
提出日時 | 2020-08-07 00:50:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,439 bytes |
コンパイル時間 | 1,199 ms |
コンパイル使用メモリ | 88,024 KB |
実行使用メモリ | 65,348 KB |
最終ジャッジ日時 | 2024-09-22 04:53:37 |
合計ジャッジ時間 | 22,488 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 284 ms
42,728 KB |
testcase_08 | AC | 288 ms
42,572 KB |
testcase_09 | AC | 299 ms
42,704 KB |
testcase_10 | AC | 313 ms
42,716 KB |
testcase_11 | AC | 317 ms
42,712 KB |
testcase_12 | AC | 328 ms
42,712 KB |
testcase_13 | AC | 319 ms
42,740 KB |
testcase_14 | AC | 309 ms
42,620 KB |
testcase_15 | AC | 296 ms
42,728 KB |
testcase_16 | AC | 300 ms
42,644 KB |
testcase_17 | AC | 310 ms
43,512 KB |
testcase_18 | AC | 317 ms
44,032 KB |
testcase_19 | AC | 308 ms
44,144 KB |
testcase_20 | AC | 334 ms
45,456 KB |
testcase_21 | AC | 339 ms
45,628 KB |
testcase_22 | AC | 329 ms
43,188 KB |
testcase_23 | AC | 327 ms
43,752 KB |
testcase_24 | AC | 324 ms
43,824 KB |
testcase_25 | AC | 324 ms
44,740 KB |
testcase_26 | AC | 321 ms
44,772 KB |
testcase_27 | AC | 306 ms
57,180 KB |
testcase_28 | AC | 365 ms
65,348 KB |
testcase_29 | AC | 372 ms
63,584 KB |
testcase_30 | AC | 373 ms
63,384 KB |
testcase_31 | AC | 310 ms
48,184 KB |
testcase_32 | AC | 190 ms
38,312 KB |
testcase_33 | AC | 197 ms
38,176 KB |
testcase_34 | AC | 190 ms
38,316 KB |
testcase_35 | AC | 191 ms
38,176 KB |
testcase_36 | AC | 189 ms
38,176 KB |
testcase_37 | AC | 114 ms
38,156 KB |
testcase_38 | AC | 102 ms
38,156 KB |
testcase_39 | AC | 108 ms
38,156 KB |
testcase_40 | AC | 115 ms
38,152 KB |
testcase_41 | AC | 100 ms
38,152 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <vector> #include <map> #include <iterator> #include <cassert> #pragma warning(disable:4996) #define INF 2140000000 using namespace std; vector<vector<pair<int, int> > > g; // to, edgeid vector<int> parent; // parent[i]: parent of vertex i vector<int> val; // val[2*i]:val for downward dir, val[2*i+1]: val for upward dir vector<map<int, int> > z; // z[i]: vals counter for directed edges from vertex i vector<int> ans; // ans[i]: Grundy number for vertex i int dfs(int par, int curr) { parent[curr] = par; int i; for (i = 0; i < (int)g[curr].size(); i++) { int next = g[curr][i].first; int edge = g[curr][i].second; if (next == par) continue; int tmp = dfs(curr, next); val[edge * 2] = tmp; z[curr][tmp]++; } for (i = 0; i < INF; i++) { if (z[curr].empty() || z[curr].find(i) == z[curr].end()) { break; } } return i; } void dfs2(int par, int curr) { int i; for (i = 0; i < (int)g[curr].size(); i++) { int next = g[curr][i].first; int edge = g[curr][i].second; if (next == par) continue; int k; for (k = 0; k < INF; k++) { if (z[curr].empty()) { break; } auto it = z[curr].find(k); if (it == z[curr].end()) { break; } int num=it->second; if (val[edge*2]==k) num--; if (num < 1) { break; } } val[edge * 2 + 1] = k; z[next][k]++; dfs2(curr, next); } for (i = 0; i < INF; i++) { if (z[curr].empty() || z[curr].find(i) == z[curr].end()) { break; } } ans[curr] = i; return; } void solve() { int n, m; scanf("%d%d", &n, &m); assert(n >= 1 && n <= 200000); assert(m >= 1 && m <= 200000); vector<int> a(m); int i; for (i = 0; i < m; i++) { scanf("%d", &a[i]); a[i]--; assert(a[i] >= 0 && a[i] < m); } g.resize(n); parent.resize(n); z.resize(n); ans.resize(n); val.resize((n-1) * 2); for (i = 0; i < n - 1; i++) { int p, q; scanf("%d%d", &p, &q); p--; q--; assert(p != q); assert(p >= 0 && p < n); assert(q >= 0 && q < n); g[p].push_back(make_pair(q, i)); g[q].push_back(make_pair(p, i)); } dfs(-1, 0); dfs2(-1, 0); int sum = 0; for (i = 0; i < m; i++) { sum ^= ans[a[i]]; } if (sum == 0) { printf("-1 -1\n"); } else { int max = -1; int maxi = -1; for (i = 0; i < m; i++) { int tmp = ans[a[i]] & sum; if (max < tmp) { max = tmp; maxi = i; } } int target = ans[a[maxi]]^sum; int nextvtx = -1; for (i = 0; i < (int)g[a[maxi]].size(); i++) { int next = g[a[maxi]][i].first; int edge = g[a[maxi]][i].second; int tmpval = (next == parent[a[maxi]] ? val[2 * edge + 1] : val[2 * edge]); if (target == tmpval) { nextvtx = next; break; } } printf("%d %d\n", maxi + 1, nextvtx + 1); } return; } int main() { solve(); return 0; }