結果

問題 No.1995 CHIKA Road
ユーザー Kiri8128Kiri8128
提出日時 2022-07-01 21:49:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 154,084 KB
最終ジャッジ日時 2024-05-04 16:12:58
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 32 ms
52,352 KB
testcase_03 AC 33 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
52,992 KB
testcase_06 AC 89 ms
78,388 KB
testcase_07 AC 145 ms
94,848 KB
testcase_08 AC 41 ms
53,248 KB
testcase_09 AC 40 ms
53,120 KB
testcase_10 AC 131 ms
90,704 KB
testcase_11 AC 266 ms
129,000 KB
testcase_12 AC 194 ms
118,808 KB
testcase_13 AC 131 ms
105,156 KB
testcase_14 AC 127 ms
94,080 KB
testcase_15 AC 264 ms
154,084 KB
testcase_16 AC 88 ms
81,408 KB
testcase_17 AC 177 ms
114,320 KB
testcase_18 AC 221 ms
129,028 KB
testcase_19 AC 227 ms
129,024 KB
testcase_20 AC 165 ms
110,364 KB
testcase_21 AC 145 ms
100,376 KB
testcase_22 AC 218 ms
129,420 KB
testcase_23 AC 119 ms
95,872 KB
testcase_24 AC 205 ms
126,228 KB
testcase_25 AC 93 ms
83,296 KB
testcase_26 AC 134 ms
97,792 KB
testcase_27 AC 195 ms
123,660 KB
testcase_28 AC 139 ms
100,760 KB
testcase_29 AC 242 ms
131,464 KB
testcase_30 AC 102 ms
83,072 KB
testcase_31 AC 99 ms
77,696 KB
testcase_32 AC 112 ms
86,016 KB
testcase_33 AC 182 ms
114,444 KB
testcase_34 AC 83 ms
78,336 KB
testcase_35 AC 131 ms
96,640 KB
testcase_36 AC 134 ms
91,136 KB
testcase_37 AC 226 ms
129,692 KB
testcase_38 AC 178 ms
113,168 KB
testcase_39 AC 81 ms
77,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
X = []
A = []
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    X.append((a, b))
    A.append(a)
    A.append(b)

SA = sorted(set(A))
IA = {a: i for i, a in enumerate(SA)}
X = [(IA[a], IA[b]) for a, b in X]
Z = [[] for _ in range(len(SA))]
for a, b in X:
    Z[a].append(b)
Y = [0] * len(SA)

for i in range(len(SA)):
    Y[i] = max(Y[i], Y[i-1])
    for j in Z[i]:
        Y[j] = max(Y[j], Y[i] + 1)
print((N - 1) * 2 - Y[-1])
0