結果

問題 No.2643 Many Range Sums Problems
ユーザー KoiKoi
提出日時 2024-02-11 19:43:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,948 ms / 8,000 ms
コード長 1,342 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 94,076 KB
最終ジャッジ日時 2024-09-28 18:27:15
合計ジャッジ時間 69,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,920 KB
testcase_01 AC 36 ms
54,140 KB
testcase_02 AC 37 ms
55,116 KB
testcase_03 AC 3,226 ms
88,700 KB
testcase_04 AC 3,272 ms
87,444 KB
testcase_05 AC 2,818 ms
85,568 KB
testcase_06 AC 4,513 ms
90,872 KB
testcase_07 AC 1,917 ms
94,076 KB
testcase_08 AC 4,310 ms
90,688 KB
testcase_09 AC 4,139 ms
90,396 KB
testcase_10 AC 1,724 ms
92,064 KB
testcase_11 AC 1,279 ms
84,468 KB
testcase_12 AC 1,993 ms
89,112 KB
testcase_13 AC 4,948 ms
92,136 KB
testcase_14 AC 4,116 ms
89,336 KB
testcase_15 AC 4,113 ms
89,264 KB
testcase_16 AC 3,089 ms
88,436 KB
testcase_17 AC 3,464 ms
88,136 KB
testcase_18 AC 1,734 ms
82,164 KB
testcase_19 AC 253 ms
78,584 KB
testcase_20 AC 729 ms
80,128 KB
testcase_21 AC 185 ms
77,760 KB
testcase_22 AC 576 ms
80,372 KB
testcase_23 AC 948 ms
81,616 KB
testcase_24 AC 2,391 ms
88,536 KB
testcase_25 AC 1,576 ms
86,096 KB
testcase_26 AC 234 ms
78,840 KB
testcase_27 AC 273 ms
78,588 KB
testcase_28 AC 36 ms
53,928 KB
testcase_29 AC 35 ms
55,916 KB
testcase_30 AC 1,842 ms
89,040 KB
testcase_31 AC 4,608 ms
92,612 KB
testcase_32 AC 2,030 ms
89,548 KB
testcase_33 AC 2,016 ms
89,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,K=map(int,input().split())
R=[]
G=[[] for _ in range(N+1)]
for i in range(N):
    r,x=map(int,input().split())
    R.append(r)
    G[i].append([r,x])
    G[r].append([i,-x])
answers=[]
que=deque([0])
for i in range(N):
    Group_num=[-1]*(N+1)
    que=deque([0])
    Group_num[0]=1
    B=[0]*(N+1)
    seen=[False]*(N+1)
    seen[0]=True
    que=deque([0])
    diff_L=-10**19
    diff_R=10**19
    ans="Yes"
    while len(que):
        p=que.popleft()
        for (q,x) in G[p]:
            if(not seen[q]):
                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
                B[q]=B[p]+x
    for i in range(N):
        if(Group_num[i]==Group_num[i+1]):
            if(B[i+1]-B[i]<0 or B[i+1]-B[i]>K):
                ans="No"
        else:
            if(Group_num[i]==1 and Group_num[i+1]==2):
                Left=B[i+1]-B[i]-K
                Right=B[i+1]-B[i]
            else:
                Left=B[i]-B[i+1]
                Right=K+B[i]-B[i+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