結果
問題 | No.2157 崖 |
ユーザー | rlangevin |
提出日時 | 2024-01-23 08:55:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 94,792 KB |
最終ジャッジ日時 | 2024-09-28 06:37:34 |
合計ジャッジ時間 | 9,475 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,968 KB |
testcase_01 | AC | 39 ms
52,224 KB |
testcase_02 | AC | 38 ms
51,840 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 39 ms
52,224 KB |
testcase_05 | AC | 41 ms
52,096 KB |
testcase_06 | AC | 38 ms
52,096 KB |
testcase_07 | AC | 39 ms
52,224 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 41 ms
52,608 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 469 ms
92,800 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 417 ms
91,180 KB |
testcase_18 | AC | 398 ms
90,368 KB |
testcase_19 | WA | - |
testcase_20 | AC | 521 ms
94,208 KB |
testcase_21 | AC | 519 ms
94,792 KB |
testcase_22 | AC | 394 ms
90,368 KB |
testcase_23 | AC | 39 ms
52,352 KB |
testcase_24 | AC | 63 ms
70,912 KB |
ソースコード
import sys input = sys.stdin.readline N, M = map(int, input().split()) D = [] for i in range(N): D.append(list(map(int, input().split()))) D[i].sort() def check(m): pre = [1] * M Dpre = D[0] for i in range(1, N): dp = [0] * M Di = D[i] now = 0 for j in range(M): while now < M: if pre[now] and Dpre[now] <= Di[j] <= Dpre[now] + m: dp[j] = 1 break now += 1 dp, pre = pre, dp Dpre, Di = Di, Dpre return sum(pre) yes = 10 ** 9 + 5 no = -1 if not check(yes): print(-1) exit() while yes - no != 1: mid = (yes + no)//2 if check(mid): yes = mid else: no = mid print(yes)