結果

問題 No.479 頂点は要らない
ユーザー rlangevinrlangevin
提出日時 2023-08-13 14:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 1,500 ms
コード長 670 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 104,132 KB
最終ジャッジ日時 2024-11-21 09:55:46
合計ジャッジ時間 4,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 38 ms
52,284 KB
testcase_02 AC 39 ms
52,860 KB
testcase_03 AC 39 ms
53,488 KB
testcase_04 AC 38 ms
52,724 KB
testcase_05 AC 38 ms
53,852 KB
testcase_06 AC 38 ms
52,832 KB
testcase_07 AC 39 ms
52,596 KB
testcase_08 AC 39 ms
53,792 KB
testcase_09 AC 38 ms
52,400 KB
testcase_10 AC 39 ms
52,812 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 39 ms
53,228 KB
testcase_13 AC 38 ms
52,828 KB
testcase_14 AC 38 ms
52,628 KB
testcase_15 AC 38 ms
53,016 KB
testcase_16 AC 40 ms
52,368 KB
testcase_17 AC 37 ms
54,376 KB
testcase_18 AC 38 ms
53,476 KB
testcase_19 AC 47 ms
61,736 KB
testcase_20 AC 49 ms
61,592 KB
testcase_21 AC 43 ms
55,064 KB
testcase_22 AC 48 ms
60,628 KB
testcase_23 AC 45 ms
56,228 KB
testcase_24 AC 43 ms
55,856 KB
testcase_25 AC 47 ms
60,476 KB
testcase_26 AC 180 ms
98,584 KB
testcase_27 AC 175 ms
98,888 KB
testcase_28 AC 137 ms
104,132 KB
testcase_29 AC 124 ms
91,200 KB
testcase_30 AC 129 ms
90,664 KB
testcase_31 AC 126 ms
90,552 KB
testcase_32 AC 127 ms
90,756 KB
testcase_33 AC 177 ms
90,024 KB
testcase_34 AC 174 ms
91,360 KB
testcase_35 AC 149 ms
88,296 KB
testcase_36 AC 110 ms
82,372 KB
testcase_37 AC 178 ms
91,808 KB
testcase_38 AC 160 ms
89,368 KB
testcase_39 AC 130 ms
86,408 KB
testcase_40 AC 148 ms
90,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, M = map(int, input().split())
G = [[] for i in range(N)]
for i in range(M):
    A, B = map(int, input().split())
    G[A].append((B, i))
    G[B].append((A, i))
    
seenV, seenE = [0] * N, [0] * M
ans = [0] * N
for i in range(N - 1, -1, -1):
    if seenV[i]:
        continue
    seenV[i] = 1
    temp = []
    for u, ind in G[i]:
        if seenE[ind]:
            continue
        temp.append(u)
        seenE[ind] = 1
    if temp:
        for u in temp:
            seenV[u] = 1
            ans[u] = 1
            
while True:
    if ans[-1] == 0:
        ans.pop()
    else:
        break
ans.reverse()

print(*ans, sep="")
0