結果

問題 No.1995 CHIKA Road
ユーザー FromBooskaFromBooska
提出日時 2023-04-07 05:52:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,440 KB
最終ジャッジ日時 2024-10-02 18:28:53
合計ジャッジ時間 7,140 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 38 ms
52,972 KB
testcase_02 AC 41 ms
52,868 KB
testcase_03 AC 37 ms
52,276 KB
testcase_04 AC 38 ms
53,004 KB
testcase_05 AC 39 ms
53,432 KB
testcase_06 AC 73 ms
74,032 KB
testcase_07 AC 106 ms
77,604 KB
testcase_08 AC 41 ms
53,412 KB
testcase_09 AC 41 ms
53,000 KB
testcase_10 AC 195 ms
81,688 KB
testcase_11 AC 238 ms
84,440 KB
testcase_12 AC 137 ms
83,796 KB
testcase_13 AC 114 ms
77,936 KB
testcase_14 AC 117 ms
78,252 KB
testcase_15 AC 200 ms
81,272 KB
testcase_16 AC 84 ms
76,568 KB
testcase_17 AC 155 ms
79,432 KB
testcase_18 AC 219 ms
81,244 KB
testcase_19 AC 221 ms
81,252 KB
testcase_20 AC 145 ms
79,556 KB
testcase_21 AC 141 ms
79,344 KB
testcase_22 AC 210 ms
81,372 KB
testcase_23 AC 108 ms
77,836 KB
testcase_24 AC 193 ms
81,308 KB
testcase_25 AC 92 ms
77,032 KB
testcase_26 AC 114 ms
77,896 KB
testcase_27 AC 187 ms
81,256 KB
testcase_28 AC 139 ms
79,604 KB
testcase_29 AC 216 ms
81,248 KB
testcase_30 AC 90 ms
76,792 KB
testcase_31 AC 73 ms
73,024 KB
testcase_32 AC 98 ms
77,200 KB
testcase_33 AC 192 ms
81,260 KB
testcase_34 AC 75 ms
74,240 KB
testcase_35 AC 112 ms
77,928 KB
testcase_36 AC 119 ms
78,544 KB
testcase_37 AC 208 ms
81,396 KB
testcase_38 AC 163 ms
79,300 KB
testcase_39 AC 73 ms
73,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Nが大きい、ダイクストラ法ではおそらくできない
# a<bであり、start<goalなので、1次元dpで前から決定できるのでは
# と思ったがNがまだ大きすぎる
# 要はショートカットを何回使えるか、使えた回数分だけ歩数も少なくなる
# ショートカットを何回使えるかをどうやって調べるか
# グラフ、新たな1次元dpも考えたが区間スケジューリングがよいのでは

N, M = map(int, input().split())
AB = []
for i in range(M):
    a, b = map(int, input().split())
    AB.append((a, b))
    
AB.sort(key = lambda x:x[1])

#print(AB)

count = 0
last = -1 
for a, b in AB:
    if a >= last:
        count += 1
        last = b
ans = (N-1)*2 - count
print(ans)
0