結果

問題 No.2643 Many Range Sums Problems
ユーザー KoiKoi
提出日時 2024-02-13 15:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,786 ms / 8,000 ms
コード長 1,456 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 83,180 KB
最終ジャッジ日時 2024-09-28 18:30:17
合計ジャッジ時間 26,556 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,408 KB
testcase_01 AC 40 ms
54,552 KB
testcase_02 AC 41 ms
55,000 KB
testcase_03 AC 1,289 ms
81,120 KB
testcase_04 AC 1,133 ms
80,752 KB
testcase_05 AC 994 ms
80,144 KB
testcase_06 AC 1,469 ms
81,868 KB
testcase_07 AC 892 ms
83,180 KB
testcase_08 AC 1,456 ms
81,464 KB
testcase_09 AC 1,445 ms
81,836 KB
testcase_10 AC 814 ms
82,852 KB
testcase_11 AC 417 ms
79,108 KB
testcase_12 AC 777 ms
79,848 KB
testcase_13 AC 1,786 ms
82,076 KB
testcase_14 AC 1,308 ms
81,508 KB
testcase_15 AC 1,357 ms
81,400 KB
testcase_16 AC 1,158 ms
80,716 KB
testcase_17 AC 1,191 ms
80,964 KB
testcase_18 AC 669 ms
79,476 KB
testcase_19 AC 176 ms
78,728 KB
testcase_20 AC 374 ms
79,320 KB
testcase_21 AC 150 ms
77,772 KB
testcase_22 AC 298 ms
79,268 KB
testcase_23 AC 371 ms
79,096 KB
testcase_24 AC 660 ms
80,620 KB
testcase_25 AC 556 ms
79,748 KB
testcase_26 AC 187 ms
78,828 KB
testcase_27 AC 197 ms
79,280 KB
testcase_28 AC 40 ms
54,596 KB
testcase_29 AC 41 ms
54,156 KB
testcase_30 AC 554 ms
80,128 KB
testcase_31 AC 1,575 ms
81,360 KB
testcase_32 AC 849 ms
80,008 KB
testcase_33 AC 866 ms
79,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#faster ver
from collections import deque
N,K=map(int,input().split())
R=[]
G1=[[] for _ in range(N+1)]
for i in range(N):
    r,x=map(int,input().split())
    R.append(r)
    G1[i].append([r,x])
    G1[r].append([i,-x])

answers=[]
Group_num=[-1]*(N+1)
que=deque([0])
seen=[False]*(N+1)
seen[0]=True
B=[0]*(N+1)

G2=[[] for _ in range(N+1)]
while len(que):
    p=que.popleft()
    for (q,x) in G1[p]:
        if(not seen[q]):
            que.append(q)
            seen[q]=True
            B[q]=B[p]+x
            G2[p].append(q)
for i in range(N):
    que=deque([0])
    Group_num[0]=1
    diff_L=-10**17
    diff_R=10**17
    ans="Yes"
    while len(que):
        p=que.popleft()
        for q in G2[p]:
            if((p==i and q==R[i]) or (q==i and p==R[i])):
                Group_num[q]=2
            else:
                Group_num[q]=Group_num[p]
            que.append(q)
            seen[q]=True
    for j in range(N):
        if(Group_num[j]==Group_num[j+1]):
            if(B[j+1]-B[j]<0 or B[j+1]-B[j]>K):
                ans="No"
        else:
            if(Group_num[j]==1 and Group_num[j+1]==2):
                Left=B[j+1]-B[j]-K
                Right=B[j+1]-B[j]
            else:
                Left=B[j]-B[j+1]
                Right=K+B[j]-B[j+1]
            diff_L=max(diff_L,Left)
            diff_R=min(diff_R,Right)
            if(diff_L>diff_R):
                ans="No"
    answers.append(ans)
for ans in answers:
    print(ans)
0