結果
問題 | No.1769 Don't Stop the Game |
ユーザー | first_vil |
提出日時 | 2021-11-03 14:57:29 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 655 ms / 3,000 ms |
コード長 | 1,671 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 165,356 KB |
最終ジャッジ日時 | 2024-06-29 18:03:55 |
合計ジャッジ時間 | 13,082 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
54,272 KB |
testcase_01 | AC | 35 ms
53,760 KB |
testcase_02 | AC | 38 ms
54,400 KB |
testcase_03 | AC | 55 ms
67,712 KB |
testcase_04 | AC | 38 ms
55,552 KB |
testcase_05 | AC | 58 ms
67,788 KB |
testcase_06 | AC | 67 ms
72,192 KB |
testcase_07 | AC | 67 ms
72,320 KB |
testcase_08 | AC | 445 ms
111,684 KB |
testcase_09 | AC | 316 ms
102,884 KB |
testcase_10 | AC | 465 ms
119,392 KB |
testcase_11 | AC | 330 ms
102,428 KB |
testcase_12 | AC | 503 ms
119,296 KB |
testcase_13 | AC | 500 ms
120,064 KB |
testcase_14 | AC | 515 ms
119,680 KB |
testcase_15 | AC | 525 ms
119,444 KB |
testcase_16 | AC | 577 ms
120,192 KB |
testcase_17 | AC | 619 ms
123,540 KB |
testcase_18 | AC | 610 ms
143,104 KB |
testcase_19 | AC | 646 ms
154,628 KB |
testcase_20 | AC | 655 ms
155,108 KB |
testcase_21 | AC | 652 ms
155,060 KB |
testcase_22 | AC | 650 ms
155,264 KB |
testcase_23 | AC | 517 ms
119,816 KB |
testcase_24 | AC | 538 ms
120,192 KB |
testcase_25 | AC | 230 ms
124,004 KB |
testcase_26 | AC | 363 ms
165,356 KB |
testcase_27 | AC | 235 ms
121,472 KB |
testcase_28 | AC | 359 ms
145,792 KB |
testcase_29 | AC | 398 ms
158,520 KB |
testcase_30 | AC | 402 ms
157,660 KB |
ソースコード
import sys input = lambda: sys.stdin.readline().rstrip() mi = lambda: map(int,input().split()) li = lambda: list(mi()) from collections import deque n = int(input()) g = [[] for i in range(n)] for i in range(n-1): a,b,c = mi() a,b = a-1,b-1 g[a].append((b,c)) g[b].append((a,c)) siz,x = [0]*n,[0]*n st = deque([0]) now = 0 while st: cur = st.pop() if siz[cur]: for to,weight in g[cur]: siz[cur] += siz[to] else: st.append(cur) par_idx = -1 for i in range(len(g[cur])): to,weight = g[cur][i] if siz[to]: par_idx = i else: x[to] = x[cur] ^ weight st.append(to) if par_idx != -1: g[cur][-1],g[cur][par_idx] = g[cur][par_idx],g[cur][-1] g[cur].pop() siz[cur] = 1 sorted_x = sorted(set(x)) for i in range(n): ok,ng = 0,len(sorted_x) while ng-ok > 1: m = (ok+ng) >> 1 if sorted_x[m] <= x[i]: ok = m else: ng = m x[i] = ok y,cnt,tmp_y,tmp_cnt = [0]*n,[0]*n,[-1]*n,[-1]*n ans = n*(n-1) p20 = 1<<20 mask = p20-1 st.append(0) while st: tmp = st.pop() cur,step = tmp&mask,tmp//p20 if step == 0: ans -= y[x[cur]] ans -= siz[cur] * cnt[x[cur]] tmp_cnt[cur] = cnt[x[cur]] tmp_y[cur] = y[x[cur]] if step < len(g[cur]): cnt[x[cur]] = 1 y[x[cur]] = n - siz[g[cur][step][0]] st.append(cur + p20*(step+1)) st.append(g[cur][step][0]) else: cnt[x[cur]] = tmp_cnt[cur] + 1 y[x[cur]] = tmp_y[cur] + siz[cur] print(ans)