結果
問題 | No.1194 Replace |
ユーザー | H3PO4 |
提出日時 | 2021-12-13 09:11:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 82,248 KB |
実行使用メモリ | 199,476 KB |
最終ジャッジ日時 | 2024-07-22 04:20:22 |
合計ジャッジ時間 | 12,189 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 594 ms
198,636 KB |
testcase_08 | AC | 588 ms
199,296 KB |
testcase_09 | AC | 576 ms
199,096 KB |
testcase_10 | AC | 585 ms
196,864 KB |
testcase_11 | AC | 574 ms
199,476 KB |
testcase_12 | AC | 581 ms
196,608 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 37 ms
51,840 KB |
testcase_21 | AC | 37 ms
51,968 KB |
testcase_22 | AC | 37 ms
51,968 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
import sys input = sys.stdin.buffer.readline N, M = map(int, input().split()) BC = [tuple(map(int, input().split())) for _ in range(M)] nodes = set() for b, c in BC: nodes.add(b) nodes.add(c) nodes = sorted(nodes) comp = {x: i for i, x in enumerate(nodes)} L = len(comp) G = [[] for _ in range(L)] for b, c in BC: G[comp[c]].append(comp[b]) table = nodes.copy() for i in range(L - 1, -1, -1): x = table[i] for j in G[i]: if table[j] < x: table[j] = x ans = N * (N + 1) // 2 - sum(nodes) + sum(table) print(ans)