結果

問題 No.479 頂点は要らない
ユーザー rlangevinrlangevin
提出日時 2023-08-13 14:08:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 194 ms / 1,500 ms
コード長 670 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 103,740 KB
最終ジャッジ日時 2024-05-01 07:13:41
合計ジャッジ時間 4,583 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,968 KB
testcase_01 AC 38 ms
52,344 KB
testcase_02 AC 40 ms
52,476 KB
testcase_03 AC 37 ms
52,316 KB
testcase_04 AC 35 ms
52,564 KB
testcase_05 AC 34 ms
52,960 KB
testcase_06 AC 35 ms
52,380 KB
testcase_07 AC 36 ms
52,532 KB
testcase_08 AC 35 ms
52,832 KB
testcase_09 AC 36 ms
52,520 KB
testcase_10 AC 34 ms
52,984 KB
testcase_11 AC 33 ms
52,420 KB
testcase_12 AC 33 ms
53,160 KB
testcase_13 AC 32 ms
52,752 KB
testcase_14 AC 35 ms
51,876 KB
testcase_15 AC 34 ms
53,228 KB
testcase_16 AC 33 ms
54,240 KB
testcase_17 AC 34 ms
53,536 KB
testcase_18 AC 33 ms
53,160 KB
testcase_19 AC 45 ms
61,764 KB
testcase_20 AC 43 ms
61,588 KB
testcase_21 AC 36 ms
53,928 KB
testcase_22 AC 42 ms
61,812 KB
testcase_23 AC 38 ms
55,668 KB
testcase_24 AC 39 ms
56,152 KB
testcase_25 AC 42 ms
61,132 KB
testcase_26 AC 170 ms
98,524 KB
testcase_27 AC 157 ms
98,608 KB
testcase_28 AC 126 ms
103,740 KB
testcase_29 AC 112 ms
90,516 KB
testcase_30 AC 112 ms
90,728 KB
testcase_31 AC 111 ms
90,560 KB
testcase_32 AC 111 ms
91,136 KB
testcase_33 AC 146 ms
90,384 KB
testcase_34 AC 194 ms
91,132 KB
testcase_35 AC 174 ms
87,932 KB
testcase_36 AC 97 ms
81,976 KB
testcase_37 AC 157 ms
91,808 KB
testcase_38 AC 139 ms
89,264 KB
testcase_39 AC 116 ms
86,540 KB
testcase_40 AC 131 ms
90,288 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