結果

問題 No.2643 Many Range Sums Problems
ユーザー KoiKoi
提出日時 2024-02-13 11:28:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,670 ms / 8,000 ms
コード長 1,456 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 83,828 KB
最終ジャッジ日時 2024-09-28 18:25:00
合計ジャッジ時間 25,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,400 KB
testcase_01 AC 37 ms
54,712 KB
testcase_02 AC 43 ms
54,560 KB
testcase_03 AC 1,216 ms
81,380 KB
testcase_04 AC 1,082 ms
80,756 KB
testcase_05 AC 915 ms
80,272 KB
testcase_06 AC 1,380 ms
81,608 KB
testcase_07 AC 817 ms
83,828 KB
testcase_08 AC 1,360 ms
81,468 KB
testcase_09 AC 1,366 ms
81,588 KB
testcase_10 AC 752 ms
82,728 KB
testcase_11 AC 399 ms
78,992 KB
testcase_12 AC 832 ms
79,596 KB
testcase_13 AC 1,670 ms
81,760 KB
testcase_14 AC 1,210 ms
81,336 KB
testcase_15 AC 1,235 ms
81,736 KB
testcase_16 AC 1,075 ms
80,828 KB
testcase_17 AC 1,121 ms
80,960 KB
testcase_18 AC 651 ms
79,652 KB
testcase_19 AC 165 ms
78,576 KB
testcase_20 AC 352 ms
78,804 KB
testcase_21 AC 140 ms
77,832 KB
testcase_22 AC 273 ms
78,952 KB
testcase_23 AC 346 ms
79,084 KB
testcase_24 AC 631 ms
80,276 KB
testcase_25 AC 523 ms
79,940 KB
testcase_26 AC 174 ms
78,848 KB
testcase_27 AC 188 ms
79,032 KB
testcase_28 AC 38 ms
55,168 KB
testcase_29 AC 37 ms
54,448 KB
testcase_30 AC 526 ms
79,596 KB
testcase_31 AC 1,474 ms
81,844 KB
testcase_32 AC 847 ms
79,892 KB
testcase_33 AC 825 ms
79,628 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**19
    diff_R=10**19
    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