結果

問題 No.479 頂点は要らない
ユーザー nanaenanae
提出日時 2017-01-28 01:15:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 430 ms / 1,500 ms
コード長 747 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 55,916 KB
最終ジャッジ日時 2024-06-06 06:29:18
合計ジャッジ時間 6,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 27 ms
10,752 KB
testcase_18 AC 27 ms
10,752 KB
testcase_19 AC 31 ms
11,136 KB
testcase_20 AC 31 ms
11,136 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 30 ms
11,136 KB
testcase_23 AC 31 ms
11,136 KB
testcase_24 AC 29 ms
11,264 KB
testcase_25 AC 30 ms
11,136 KB
testcase_26 AC 430 ms
49,772 KB
testcase_27 AC 428 ms
49,892 KB
testcase_28 AC 345 ms
55,916 KB
testcase_29 AC 280 ms
42,400 KB
testcase_30 AC 289 ms
42,524 KB
testcase_31 AC 291 ms
42,528 KB
testcase_32 AC 284 ms
42,528 KB
testcase_33 AC 303 ms
38,048 KB
testcase_34 AC 347 ms
40,348 KB
testcase_35 AC 279 ms
33,516 KB
testcase_36 AC 178 ms
28,032 KB
testcase_37 AC 333 ms
39,584 KB
testcase_38 AC 289 ms
35,996 KB
testcase_39 AC 214 ms
28,664 KB
testcase_40 AC 269 ms
34,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG: {} -> {}'.format(name, val), file=sys.stderr)
            return None

n, m = map(int, sys.stdin.readline().split())
edges = {i:set() for i in range(n)}
buy = ['0'] * n
processed = [False] * n

for i in range(m):
    a, b = map(int, sys.stdin.readline().split())
    edges[a].add(b)
    edges[b].add(a)

# debug(edges, locals())

for i in range(n - 1, -1, -1):
    if processed[i] == True:
        continue

    processed[i] = True

    for node in edges[i]:
        buy[node] = '1'
        processed[node] = True

# debug(buy, locals())

ans = ''.join([str(b) for b in reversed(buy)])
ans = ans.lstrip('0')

print(ans)
0