結果
問題 | No.1515 Making Many Multiples |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2023-05-12 02:00:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,823 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 529,552 KB |
最終ジャッジ日時 | 2024-11-27 21:19:45 |
合計ジャッジ時間 | 51,013 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
57,472 KB |
testcase_01 | AC | 56 ms
332,356 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | AC | 1,455 ms
161,832 KB |
testcase_09 | MLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 169 ms
343,380 KB |
testcase_14 | TLE | - |
testcase_15 | AC | 167 ms
77,424 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 813 ms
152,940 KB |
testcase_18 | AC | 490 ms
126,788 KB |
testcase_19 | AC | 176 ms
89,796 KB |
testcase_20 | AC | 895 ms
136,192 KB |
testcase_21 | TLE | - |
testcase_22 | AC | 106 ms
76,652 KB |
testcase_23 | TLE | - |
testcase_24 | AC | 36 ms
51,712 KB |
testcase_25 | AC | 47 ms
60,544 KB |
testcase_26 | AC | 37 ms
52,096 KB |
testcase_27 | TLE | - |
testcase_28 | AC | 1,885 ms
263,296 KB |
testcase_29 | AC | 181 ms
81,132 KB |
testcase_30 | AC | 354 ms
351,132 KB |
ソースコード
""" https://yukicoder.me/problems/no/1515 手元の情報が K^2 通りになってしまうのが嫌だ これは難しそうだ… まず、無駄な行動を禁止しよう カードを取った直後に捨てない場合、少なくとも次のKの倍数になる時まで捨ててはいけない すると… 2枚捨ててはいけないカードを持っている場合 1枚は捨ててはいけないカードの場合 全て捨てるべきカードの場合 になる…? というか、いつ捨ててもいいか 3枚揃ってKになった時に、好きなのを捨てていい にする dp[i][x][y] = xとyを持っている時、最大の得点 dp[i][x][K] = xのみ持っている場合の最大の得点 dp[i][K][K] = 1枚も持っていない場合の最大の得点 これでdp配列を使いまわせる 面白い!! O(NK)かな """ import sys from sys import stdin N,K,X,Y = map(int,stdin.readline().split()) X %= K Y %= K A = list(map(int,stdin.readline().split())) dp = [ [float("-inf")] * (K+1) for i in range(K+1) ] dp[K][K] = 0 dp[X][Y] = dp[Y][X] = 0 dp[X][K] = dp[Y][K] = 0 ans = 0 for a in A: a %= K upd = [] #更新を記録 for x in range(K): #2枚持っている場合 y = (K - x - a) % K nmax = 1 + dp[x][y] upd.append( (x,y,nmax) ) upd.append( (x,a,nmax) ) upd.append( (y,a,nmax) ) upd.append( (x,K,nmax) ) upd.append( (y,K,nmax) ) upd.append( (a,K,nmax) ) upd.append( (K,K,nmax) ) for x in range(K): #1枚持っている場合 upd.append( (x,a,dp[x][K]) ) #0枚 upd.append( (a,K,dp[K][K]) ) #updを更新 for x,y,val in upd: dp[x][y] = max(dp[x][y] , val) dp[y][x] = max(dp[y][x] , val) ans = max(ans , val) print (ans)