結果
問題 | No.1153 ねこちゃんゲーム |
ユーザー | tarattata1 |
提出日時 | 2020-08-07 00:29:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 389 ms / 2,500 ms |
コード長 | 3,309 bytes |
コンパイル時間 | 1,112 ms |
コンパイル使用メモリ | 87,576 KB |
実行使用メモリ | 65,428 KB |
最終ジャッジ日時 | 2024-09-22 04:33:11 |
合計ジャッジ時間 | 22,074 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 337 ms
42,648 KB |
testcase_08 | AC | 310 ms
42,664 KB |
testcase_09 | AC | 328 ms
42,628 KB |
testcase_10 | AC | 333 ms
42,600 KB |
testcase_11 | AC | 312 ms
42,600 KB |
testcase_12 | AC | 315 ms
42,780 KB |
testcase_13 | AC | 318 ms
42,592 KB |
testcase_14 | AC | 325 ms
42,680 KB |
testcase_15 | AC | 322 ms
42,572 KB |
testcase_16 | AC | 319 ms
42,744 KB |
testcase_17 | AC | 334 ms
43,376 KB |
testcase_18 | AC | 335 ms
44,152 KB |
testcase_19 | AC | 334 ms
44,068 KB |
testcase_20 | AC | 333 ms
45,456 KB |
testcase_21 | AC | 328 ms
45,572 KB |
testcase_22 | AC | 321 ms
43,224 KB |
testcase_23 | AC | 337 ms
43,624 KB |
testcase_24 | AC | 333 ms
43,620 KB |
testcase_25 | AC | 337 ms
44,808 KB |
testcase_26 | AC | 330 ms
44,820 KB |
testcase_27 | AC | 335 ms
57,036 KB |
testcase_28 | AC | 388 ms
65,428 KB |
testcase_29 | AC | 389 ms
63,592 KB |
testcase_30 | AC | 385 ms
63,440 KB |
testcase_31 | AC | 322 ms
48,132 KB |
testcase_32 | AC | 198 ms
38,308 KB |
testcase_33 | AC | 192 ms
38,176 KB |
testcase_34 | AC | 189 ms
38,312 KB |
testcase_35 | AC | 206 ms
38,308 KB |
testcase_36 | AC | 201 ms
38,312 KB |
testcase_37 | AC | 116 ms
38,152 KB |
testcase_38 | AC | 102 ms
38,284 KB |
testcase_39 | AC | 106 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 conter 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]--; } 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--; 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; }