結果
問題 | No.2408 Lakes and Fish |
ユーザー | かとぅー ☆ |
提出日時 | 2023-09-04 21:56:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 586 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 106,812 KB |
最終ジャッジ日時 | 2024-06-22 19:24:06 |
合計ジャッジ時間 | 5,850 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
53,632 KB |
testcase_01 | AC | 39 ms
53,888 KB |
testcase_02 | AC | 39 ms
53,504 KB |
testcase_03 | AC | 37 ms
53,504 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 148 ms
105,420 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
from bisect import bisect_left from collections import defaultdict N, M = map(int, input().split()) L = list(map(int, input().split())) L.sort() mi = L[0] ma = L[-1] d = defaultdict(int) for i in range(N): d[L[i]] += 1 ans = 0 for i in range(M): f, b, w = map(int, input().split()) if f in d: ans += w else: if f > ma: ans += max(w-abs(f-ma), b) elif mi > f: ans += max(w-abs(f-mi), b) else: e = bisect_left(L, f) ans += max(w-abs(L[e]-f), w-abs(L[e-1]), b) print(ans)