結果
問題 | No.1153 ねこちゃんゲーム |
ユーザー | tarattata1 |
提出日時 | 2020-07-11 16:40:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 362 ms / 2,500 ms |
コード長 | 3,220 bytes |
コンパイル時間 | 1,094 ms |
コンパイル使用メモリ | 86,504 KB |
実行使用メモリ | 65,792 KB |
最終ジャッジ日時 | 2024-04-26 05:14:41 |
合計ジャッジ時間 | 22,031 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 283 ms
43,136 KB |
testcase_08 | AC | 294 ms
43,136 KB |
testcase_09 | AC | 288 ms
43,008 KB |
testcase_10 | AC | 306 ms
43,136 KB |
testcase_11 | AC | 291 ms
43,264 KB |
testcase_12 | AC | 288 ms
43,136 KB |
testcase_13 | AC | 303 ms
43,008 KB |
testcase_14 | AC | 319 ms
43,008 KB |
testcase_15 | AC | 306 ms
43,136 KB |
testcase_16 | AC | 321 ms
43,136 KB |
testcase_17 | AC | 309 ms
43,776 KB |
testcase_18 | AC | 311 ms
44,672 KB |
testcase_19 | AC | 300 ms
44,544 KB |
testcase_20 | AC | 315 ms
45,952 KB |
testcase_21 | AC | 301 ms
45,952 KB |
testcase_22 | AC | 293 ms
43,648 KB |
testcase_23 | AC | 292 ms
44,032 KB |
testcase_24 | AC | 350 ms
44,160 KB |
testcase_25 | AC | 298 ms
45,184 KB |
testcase_26 | AC | 309 ms
45,440 KB |
testcase_27 | AC | 289 ms
57,600 KB |
testcase_28 | AC | 350 ms
65,792 KB |
testcase_29 | AC | 362 ms
64,128 KB |
testcase_30 | AC | 349 ms
63,744 KB |
testcase_31 | AC | 311 ms
48,512 KB |
testcase_32 | AC | 193 ms
38,820 KB |
testcase_33 | AC | 186 ms
38,692 KB |
testcase_34 | AC | 191 ms
38,820 KB |
testcase_35 | AC | 187 ms
38,560 KB |
testcase_36 | AC | 184 ms
38,568 KB |
testcase_37 | AC | 118 ms
38,544 KB |
testcase_38 | AC | 106 ms
38,548 KB |
testcase_39 | AC | 112 ms
38,416 KB |
testcase_40 | AC | 115 ms
38,536 KB |
testcase_41 | AC | 103 ms
38,412 KB |
ソースコード
#include <cstdio> #include <cstdlib> #include <vector> #include <map> #include <iterator> #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); 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; }