結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | ttr |
提出日時 | 2020-01-31 20:14:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 767 bytes |
コンパイル時間 | 190 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 204,708 KB |
最終ジャッジ日時 | 2024-09-17 06:58:44 |
合計ジャッジ時間 | 5,000 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
17,820 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 33 ms
10,752 KB |
testcase_03 | AC | 33 ms
10,880 KB |
testcase_04 | AC | 33 ms
10,880 KB |
testcase_05 | AC | 42 ms
10,880 KB |
testcase_06 | AC | 36 ms
10,752 KB |
testcase_07 | AC | 60 ms
10,880 KB |
testcase_08 | AC | 176 ms
11,776 KB |
testcase_09 | AC | 70 ms
11,136 KB |
testcase_10 | AC | 98 ms
11,136 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
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 | -- | - |
ソースコード
import bisect N = int(input()) A = [int(a) for a in input().split()] B = [int(b) for b in input().split()] D = [int(d) for d in input().split()] D.sort() L = [[N]*(N+1) for _ in range(N+1)] for i in range(N+1): for j in range(N+1): if i+j > N: continue c = A[i] + B[j] L[i][j] = bisect.bisect_right(D, c) dp = [[-1]*(N+1) for _ in range(N+1)] dp[0][0] = N for i in range(N): for j in range(N): if i+j >= N: continue dp[i+1][j] = max(dp[i+1][j], min(L[i+1][j], dp[i][j]) - 1) dp[i][j+1] = max(dp[i][j+1], min(L[i][j+1], dp[i][j]) - 1) ans = 0 for i in range(N+1): for j in range(N+1): if dp[i][j] < 0 or i+j > N: continue ans = max(ans, i+j) print(ans)