結果

問題 No.1995 CHIKA Road
ユーザー ntudantuda
提出日時 2022-10-10 21:03:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 481 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 158,720 KB
最終ジャッジ日時 2024-06-24 17:58:46
合計ジャッジ時間 10,698 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 45 ms
51,840 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
52,480 KB
testcase_05 AC 47 ms
53,120 KB
testcase_06 AC 113 ms
78,976 KB
testcase_07 AC 169 ms
91,136 KB
testcase_08 AC 49 ms
53,376 KB
testcase_09 AC 46 ms
53,248 KB
testcase_10 AC 265 ms
87,680 KB
testcase_11 AC 481 ms
158,720 KB
testcase_12 AC 276 ms
128,512 KB
testcase_13 AC 207 ms
107,136 KB
testcase_14 AC 207 ms
101,120 KB
testcase_15 AC 425 ms
134,912 KB
testcase_16 AC 129 ms
81,920 KB
testcase_17 AC 264 ms
113,408 KB
testcase_18 AC 397 ms
138,496 KB
testcase_19 AC 401 ms
138,496 KB
testcase_20 AC 248 ms
103,552 KB
testcase_21 AC 243 ms
106,368 KB
testcase_22 AC 380 ms
115,232 KB
testcase_23 AC 172 ms
91,264 KB
testcase_24 AC 347 ms
126,464 KB
testcase_25 AC 141 ms
84,224 KB
testcase_26 AC 192 ms
97,152 KB
testcase_27 AC 325 ms
124,160 KB
testcase_28 AC 234 ms
106,368 KB
testcase_29 AC 389 ms
136,448 KB
testcase_30 AC 135 ms
82,432 KB
testcase_31 AC 110 ms
78,080 KB
testcase_32 AC 152 ms
84,352 KB
testcase_33 AC 321 ms
110,012 KB
testcase_34 AC 111 ms
78,464 KB
testcase_35 AC 183 ms
95,232 KB
testcase_36 AC 197 ms
93,312 KB
testcase_37 AC 364 ms
114,944 KB
testcase_38 AC 285 ms
113,792 KB
testcase_39 AC 109 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, (input().split()))
AB = [list(map(int, input().split())) for _ in range(M)]
S = set()
for a, b in AB:
    S.add(a)
    S.add(b)
B = sorted(list(S))
D = dict(zip(B, range(len(B))))
NB = len(B)

dp = [0] * (NB)
AB.sort(key=lambda x: x[1])
k = 0
for i in range(1, NB):
    b = B[i]
    dp[i] = dp[i - 1]
    while k < M and AB[k][1] == b:
        dp[i] = max(dp[i], dp[D[AB[k][0]]] + 1)
        k += 1
print(2 * N - dp[NB - 1] - 2)
0