結果

問題 No.1676 Coin Trade (Single)
ユーザー ygd.ygd.
提出日時 2021-09-12 19:23:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 766 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 92,384 KB
最終ジャッジ日時 2024-06-24 10:47:11
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
51,712 KB
testcase_01 AC 46 ms
51,840 KB
testcase_02 AC 45 ms
51,712 KB
testcase_03 AC 177 ms
88,192 KB
testcase_04 AC 161 ms
84,736 KB
testcase_05 AC 157 ms
83,840 KB
testcase_06 AC 138 ms
83,840 KB
testcase_07 AC 124 ms
81,920 KB
testcase_08 AC 94 ms
76,800 KB
testcase_09 AC 118 ms
82,048 KB
testcase_10 AC 122 ms
82,304 KB
testcase_11 AC 145 ms
87,936 KB
testcase_12 AC 105 ms
79,104 KB
testcase_13 AC 41 ms
51,712 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 41 ms
51,968 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 41 ms
51,712 KB
testcase_18 AC 41 ms
52,096 KB
testcase_19 AC 42 ms
51,712 KB
testcase_20 AC 41 ms
51,584 KB
testcase_21 AC 41 ms
52,352 KB
testcase_22 AC 40 ms
51,968 KB
testcase_23 AC 41 ms
51,712 KB
testcase_24 AC 40 ms
51,840 KB
testcase_25 AC 41 ms
52,096 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 41 ms
51,968 KB
testcase_28 AC 41 ms
51,840 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 41 ms
51,840 KB
testcase_31 AC 40 ms
51,840 KB
testcase_32 AC 41 ms
52,352 KB
testcase_33 AC 168 ms
92,196 KB
testcase_34 AC 172 ms
92,384 KB
testcase_35 AC 169 ms
92,384 KB
testcase_36 AC 173 ms
92,116 KB
testcase_37 AC 165 ms
92,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

def main():
    N,K = map(int,input().split())
    A = []; M = []
    RG = []
    for i in range(N):
        a,m = map(int,input().split())
        A.append(a)
        M.append(m)
        B = list(map(int,input().split()))
        B = [b-1 for b in B] #0index
        RG.append(B)
    #print(RG)
    dp = [0]*(N+1)
    for i in range(N):
        dp[i+1] = max(dp[i+1],dp[i]) #何もしない
        for pre in RG[i]:
            #if pre < i and A[pre] < A[i]: #前のほうが安いなら。
            dif = A[i] - A[pre]
            dp[i+1] = max(dp[i+1], dp[pre+1] + dif) #ここでpreのIndexはPre+1
        #print(dp)
    #print(dp)
    ans = dp[N]
    print(ans)

    
    
if __name__ == '__main__':
    main()
0