結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | mkawa2 |
提出日時 | 2019-12-16 22:34:26 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,234 bytes |
コンパイル時間 | 446 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 163,072 KB |
最終ジャッジ日時 | 2024-07-02 20:41:12 |
合計ジャッジ時間 | 16,572 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,128 KB |
testcase_01 | AC | 31 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 31 ms
10,624 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,752 KB |
testcase_07 | AC | 34 ms
10,752 KB |
testcase_08 | AC | 49 ms
11,136 KB |
testcase_09 | AC | 36 ms
10,880 KB |
testcase_10 | AC | 40 ms
11,008 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 341 ms
22,912 KB |
testcase_15 | AC | 1,797 ms
90,496 KB |
testcase_16 | TLE | - |
testcase_17 | AC | 465 ms
27,904 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
from bisect import bisect_right import sys sys.setrecursionlimit(10 ** 6) int1 = lambda x: int(x) - 1 p2D = lambda x: print(*x, sep="\n") def MI(): return map(int, sys.stdin.readline().split()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def main(): n = int(input()) aa = LI() bb = LI() dd = LI() dd.sort() # dp[i][j]kenがi回、kooがj回飲んだとき、何番目の問題まで進んだかの最大値 dp = [[-1] * (n + 1) for _ in range(n + 1)] dp[0][0] = n # 2人合わせてs回のんだとき for s in range(n): for i in range(s + 1): j = s - i pre = dp[i][j] if pre < 1: continue # iを進める場合 di = bisect_right(dd, aa[i + 1] + bb[j], 0, pre) - 1 if di > dp[i + 1][j]: dp[i + 1][j] = di # jを進める場合 di = bisect_right(dd, aa[i] + bb[j + 1], 0, pre) - 1 if di > dp[i][j + 1]: dp[i][j + 1] = di #p2D(dp) for s in range(n,-1,-1): for i in range(n+1): j=s-i if dp[i][j]>-1: print(s) exit() main()