結果

問題 No.1995 CHIKA Road
ユーザー FromBooskaFromBooska
提出日時 2023-10-17 21:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 563 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 83,928 KB
最終ジャッジ日時 2024-09-17 18:38:18
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,124 KB
testcase_01 AC 34 ms
52,264 KB
testcase_02 AC 37 ms
52,824 KB
testcase_03 AC 34 ms
53,436 KB
testcase_04 AC 34 ms
52,800 KB
testcase_05 AC 35 ms
53,708 KB
testcase_06 AC 65 ms
73,800 KB
testcase_07 AC 92 ms
77,324 KB
testcase_08 AC 36 ms
54,340 KB
testcase_09 AC 34 ms
53,276 KB
testcase_10 AC 168 ms
81,156 KB
testcase_11 AC 218 ms
83,928 KB
testcase_12 AC 121 ms
83,924 KB
testcase_13 AC 98 ms
77,640 KB
testcase_14 AC 106 ms
78,004 KB
testcase_15 AC 178 ms
80,916 KB
testcase_16 AC 87 ms
76,460 KB
testcase_17 AC 141 ms
79,380 KB
testcase_18 AC 191 ms
81,504 KB
testcase_19 AC 191 ms
81,640 KB
testcase_20 AC 130 ms
79,312 KB
testcase_21 AC 122 ms
79,296 KB
testcase_22 AC 181 ms
81,252 KB
testcase_23 AC 95 ms
77,500 KB
testcase_24 AC 166 ms
81,156 KB
testcase_25 AC 78 ms
76,672 KB
testcase_26 AC 97 ms
77,772 KB
testcase_27 AC 157 ms
80,940 KB
testcase_28 AC 118 ms
79,384 KB
testcase_29 AC 181 ms
81,252 KB
testcase_30 AC 76 ms
76,356 KB
testcase_31 AC 62 ms
74,572 KB
testcase_32 AC 83 ms
77,164 KB
testcase_33 AC 160 ms
81,296 KB
testcase_34 AC 64 ms
74,704 KB
testcase_35 AC 95 ms
77,756 KB
testcase_36 AC 102 ms
78,312 KB
testcase_37 AC 180 ms
81,392 KB
testcase_38 AC 151 ms
79,152 KB
testcase_39 AC 63 ms
73,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 区間スケジューリングでの解き方、最初はそうやったね
# 長い近道ではなく、近道の回数が増えるのがベスト
# つまり近道で区間スケジューリングをやって何回使えるかカウントする

N, M = map(int, input().split())

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

count = 0
last = -1
for a, b in edge_list:
    if a >= last:
        count += 1
        last = b
#print(count)

ans = 2*(N-1)-count
print(ans)
0