結果

問題 No.1995 CHIKA Road
ユーザー hir355hir355
提出日時 2022-07-01 21:40:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 156,416 KB
最終ジャッジ日時 2024-05-04 15:58:03
合計ジャッジ時間 6,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 36 ms
52,736 KB
testcase_06 AC 85 ms
77,824 KB
testcase_07 AC 122 ms
88,704 KB
testcase_08 AC 38 ms
53,504 KB
testcase_09 AC 35 ms
52,736 KB
testcase_10 AC 120 ms
83,712 KB
testcase_11 AC 281 ms
151,040 KB
testcase_12 AC 186 ms
118,400 KB
testcase_13 AC 132 ms
104,576 KB
testcase_14 AC 137 ms
104,532 KB
testcase_15 AC 255 ms
156,416 KB
testcase_16 AC 91 ms
81,024 KB
testcase_17 AC 153 ms
112,000 KB
testcase_18 AC 225 ms
130,944 KB
testcase_19 AC 215 ms
130,944 KB
testcase_20 AC 139 ms
103,204 KB
testcase_21 AC 136 ms
100,440 KB
testcase_22 AC 207 ms
129,024 KB
testcase_23 AC 112 ms
91,964 KB
testcase_24 AC 195 ms
115,712 KB
testcase_25 AC 87 ms
82,560 KB
testcase_26 AC 131 ms
96,128 KB
testcase_27 AC 174 ms
99,060 KB
testcase_28 AC 141 ms
100,096 KB
testcase_29 AC 208 ms
131,328 KB
testcase_30 AC 89 ms
82,304 KB
testcase_31 AC 89 ms
77,056 KB
testcase_32 AC 108 ms
84,480 KB
testcase_33 AC 172 ms
98,944 KB
testcase_34 AC 81 ms
77,312 KB
testcase_35 AC 145 ms
93,696 KB
testcase_36 AC 135 ms
96,640 KB
testcase_37 AC 208 ms
128,000 KB
testcase_38 AC 181 ms
112,768 KB
testcase_39 AC 83 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

compress = lambda arr: {e: i for i, e in enumerate(sorted(set(arr)))}
n, m = map(int, input().split())
t = (n - 1) * 2
a = [0] * m
b = [0] * m
for i in range(m):
    a[i], b[i] = map(int, input().split())
cp = compress([1] + a + b + [n])
n = len(cp)
g = [[] for _ in range(n)]
for i in range(m):
    g[cp[a[i]]].append(cp[b[i]])
dp = [0] * n
for i in range(n - 1):
    dp[i + 1] = max(dp[i + 1], dp[i])
    for j in g[i]:
        dp[j] = max(dp[j], dp[i] + 1)
print(t - dp[n - 1])
0