結果

問題 No.2643 Many Range Sums Problems
ユーザー こめだわらこめだわら
提出日時 2024-02-19 23:31:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,429 ms / 8,000 ms
コード長 964 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 100,180 KB
最終ジャッジ日時 2024-09-29 03:12:53
合計ジャッジ時間 24,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,216 KB
testcase_01 AC 39 ms
53,144 KB
testcase_02 AC 42 ms
54,000 KB
testcase_03 AC 843 ms
95,376 KB
testcase_04 AC 697 ms
90,392 KB
testcase_05 AC 690 ms
89,836 KB
testcase_06 AC 980 ms
99,700 KB
testcase_07 AC 926 ms
99,676 KB
testcase_08 AC 907 ms
96,284 KB
testcase_09 AC 969 ms
99,588 KB
testcase_10 AC 828 ms
96,256 KB
testcase_11 AC 643 ms
90,072 KB
testcase_12 AC 1,429 ms
99,616 KB
testcase_13 AC 1,109 ms
99,120 KB
testcase_14 AC 886 ms
97,512 KB
testcase_15 AC 901 ms
97,752 KB
testcase_16 AC 772 ms
92,748 KB
testcase_17 AC 829 ms
95,552 KB
testcase_18 AC 491 ms
83,144 KB
testcase_19 AC 146 ms
77,288 KB
testcase_20 AC 277 ms
79,068 KB
testcase_21 AC 131 ms
76,864 KB
testcase_22 AC 364 ms
79,844 KB
testcase_23 AC 569 ms
83,904 KB
testcase_24 AC 949 ms
92,688 KB
testcase_25 AC 889 ms
90,876 KB
testcase_26 AC 176 ms
77,184 KB
testcase_27 AC 185 ms
77,728 KB
testcase_28 AC 38 ms
53,488 KB
testcase_29 AC 39 ms
53,996 KB
testcase_30 AC 915 ms
99,608 KB
testcase_31 AC 963 ms
99,712 KB
testcase_32 AC 1,427 ms
99,668 KB
testcase_33 AC 1,420 ms
100,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

def xx(t):
    a=t[0]
    b=t[1]
    if a==0:
        if 0<=b<=K:
            return (-10**18,10**18)
        else:
            return (10**18,-10**18)
    if a>0:
        l=(-b-1)//a+1
        r=(K-b)//a
        return (l,r)
    if a<0:
        a=-a
        b=-b
        l=(-K-b-1)//a+1
        r=(-b)//a
        return (l,r)
    
RX=[tuple(map(int,input().split())) for _ in range(N)]

for i in range(N):
    dp=[(0,0) for _ in range(N)]
    S=[(0,0) for _ in range(N+1)]
    for j in range(N-1,-1,-1):
        if i!=j:
            dp[j]=((S[RX[j][0]][0]-S[j+1][0]),RX[j][1]+(S[RX[j][0]][1]-S[j+1][1]))
            S[j]=(S[j+1][0]+dp[j][0],S[j+1][1]+dp[j][1])
        else:
            dp[j]=(1,0)
            S[j]=(S[j+1][0]+dp[j][0],S[j+1][1]+dp[j][1])
    l=-10**18
    r=10**18
    for j in range(N):
        ll,rr=xx(dp[j])
        l=max(l,ll)
        r=min(r,rr)
    if l<=r:
        print('Yes')
    else:
        print('No')
0