結果
問題 | No.2408 Lakes and Fish |
ユーザー | irohasu19_ |
提出日時 | 2023-08-13 13:46:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 670 ms / 2,000 ms |
コード長 | 935 bytes |
コンパイル時間 | 243 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 28,600 KB |
最終ジャッジ日時 | 2024-11-21 09:31:34 |
合計ジャッジ時間 | 11,373 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
11,008 KB |
testcase_01 | AC | 32 ms
10,880 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 29 ms
10,880 KB |
testcase_04 | AC | 615 ms
28,132 KB |
testcase_05 | AC | 622 ms
28,136 KB |
testcase_06 | AC | 606 ms
27,668 KB |
testcase_07 | AC | 670 ms
28,600 KB |
testcase_08 | AC | 662 ms
28,012 KB |
testcase_09 | AC | 657 ms
28,084 KB |
testcase_10 | AC | 666 ms
28,020 KB |
testcase_11 | AC | 385 ms
20,316 KB |
testcase_12 | AC | 464 ms
23,032 KB |
testcase_13 | AC | 137 ms
15,120 KB |
testcase_14 | AC | 288 ms
17,764 KB |
testcase_15 | AC | 551 ms
25,644 KB |
testcase_16 | AC | 167 ms
16,564 KB |
testcase_17 | AC | 172 ms
14,720 KB |
testcase_18 | AC | 305 ms
19,388 KB |
testcase_19 | AC | 549 ms
24,116 KB |
testcase_20 | AC | 601 ms
23,668 KB |
testcase_21 | AC | 561 ms
24,824 KB |
ソースコード
import bisect n, m = map(int, input().split()) L = list(map(int, input().split())) F = [] B = [] W = [] for _ in range(m): li = list(map(int, input().split())) F.append(li[0]) B.append(li[1]) W.append(li[2]) total_cost = 0 is_move = [False]*m for i in range(m): ind_1 = bisect.bisect_left(L, F[i]) if ind_1>0 and ind_1 < n: ind_2 = ind_1 - 1 cost = min(abs(F[i]-L[ind_1]), abs(F[i]-L[ind_2])) if cost < (W[i]-B[i]) : is_move[i] = True total_cost += cost else: continue elif ind_1 == 0: cost = abs(F[i]-L[ind_1]) if cost < (W[i]-B[i]) : is_move[i] = True total_cost += cost elif ind_1 == n: cost = abs(F[i]-L[ind_1-1]) if cost < (W[i]-B[i]) : is_move[i] = True total_cost += cost total_score = 0 for j in range(m): if is_move[j]: total_score += W[j] else: total_score += B[j] total_score -= total_cost print(total_score)