結果
問題 | No.1769 Don't Stop the Game |
ユーザー | first_vil |
提出日時 | 2021-10-27 22:39:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,470 ms / 3,000 ms |
コード長 | 2,904 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 168,892 KB |
最終ジャッジ日時 | 2024-06-29 17:49:59 |
合計ジャッジ時間 | 25,472 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
54,400 KB |
testcase_01 | AC | 43 ms
54,272 KB |
testcase_02 | AC | 42 ms
54,272 KB |
testcase_03 | AC | 79 ms
73,216 KB |
testcase_04 | AC | 49 ms
56,960 KB |
testcase_05 | AC | 76 ms
72,064 KB |
testcase_06 | AC | 96 ms
76,808 KB |
testcase_07 | AC | 99 ms
77,440 KB |
testcase_08 | AC | 995 ms
110,824 KB |
testcase_09 | AC | 743 ms
103,504 KB |
testcase_10 | AC | 1,049 ms
125,344 KB |
testcase_11 | AC | 712 ms
101,628 KB |
testcase_12 | AC | 1,190 ms
118,328 KB |
testcase_13 | AC | 1,215 ms
119,068 KB |
testcase_14 | AC | 1,224 ms
119,356 KB |
testcase_15 | AC | 1,162 ms
118,776 KB |
testcase_16 | AC | 1,209 ms
118,624 KB |
testcase_17 | AC | 1,249 ms
123,540 KB |
testcase_18 | AC | 1,421 ms
144,976 KB |
testcase_19 | AC | 1,371 ms
156,860 KB |
testcase_20 | AC | 1,396 ms
157,780 KB |
testcase_21 | AC | 1,427 ms
157,672 KB |
testcase_22 | AC | 1,470 ms
157,816 KB |
testcase_23 | AC | 1,172 ms
119,288 KB |
testcase_24 | AC | 1,162 ms
119,360 KB |
testcase_25 | AC | 344 ms
130,872 KB |
testcase_26 | AC | 511 ms
168,892 KB |
testcase_27 | AC | 331 ms
125,772 KB |
testcase_28 | AC | 459 ms
161,212 KB |
testcase_29 | AC | 559 ms
161,204 KB |
testcase_30 | AC | 557 ms
149,812 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,par = [0]*n,[0]*n,[-1]*n st1 = deque([0]) while st1: cur = st1.pop() if siz[cur]: g[cur].sort(key = lambda val: -siz[val[0]]) for to,weight in g[cur]: siz[cur] += siz[to] else: st1.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 par[to] = cur st1.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_sum,cnt_sum = [0]*len(sorted_x),[0]*len(sorted_x) y,cnt = [-1]*n, [-1]*n ans = n*(n-1) # st.pop()[1] の0bit目は 0,1 = false/true # 1bit目は 0,1 = 最初,f(true)の直後 # を表す st1.append(0) st2 = deque([]) p30,p31 = 1<<30,1<<31 mask = p30-1 while st1: tmp = st1.pop() cur1,flag,step = tmp&mask,tmp&p30,tmp&p31 if step == 0: st1.append(cur1 | flag | p31) for i in range(len(g[cur1])): st1.append(g[cur1][i][0] | (int(i != 0) * p30)) else: for i in range(1,len(g[cur1])): st2.append(g[cur1][i][0]) #dfs1-begin while st2: cur2 = st2.pop() y_sum[x[cur2]] += y[cur2]; cnt_sum[x[cur2]] += cnt[cur2]; for to,weight in g[cur2]: st2.append(to) #dfs1-end if y[cur1] == -1: y[cur1] = siz[cur1] - y_sum[x[cur1]] cnt[cur1] = 1 - cnt_sum[x[cur1]] ans -= y_sum[x[cur1]]#case-1 y_sum[x[cur1]] += y[cur1] cnt_sum[x[cur1]] += cnt[cur1] if cur1 == 0: for j in range(len(sorted_x)): if j != x[cur1]: ans -= y_sum[j] * cnt_sum[j]#case-3 else: ans -= cnt_sum[x[par[cur1]]] * (n - siz[cur1])#case-2 ans -= y_sum[x[par[cur1]]] * cnt_sum[x[par[cur1]]]#case-3 ans += siz[cur1]#case-3 if flag: st2.append(cur1) #dfs1-begin while st2: cur2 = st2.pop() y_sum[x[cur2]] -= y[cur2]; cnt_sum[x[cur2]] -= cnt[cur2]; for to,weight in g[cur2]: st2.append(to) #dfs1-end print(ans)