結果

問題 No.479 頂点は要らない
ユーザー nanaenanae
提出日時 2017-01-28 01:15:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 539 ms / 1,500 ms
コード長 747 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-12-23 18:43:47
合計ジャッジ時間 8,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,752 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 35 ms
11,136 KB
testcase_20 AC 34 ms
11,136 KB
testcase_21 AC 34 ms
10,880 KB
testcase_22 AC 34 ms
11,136 KB
testcase_23 AC 35 ms
11,136 KB
testcase_24 AC 35 ms
11,264 KB
testcase_25 AC 36 ms
11,136 KB
testcase_26 AC 536 ms
49,892 KB
testcase_27 AC 539 ms
49,896 KB
testcase_28 AC 419 ms
55,908 KB
testcase_29 AC 337 ms
42,528 KB
testcase_30 AC 331 ms
42,652 KB
testcase_31 AC 330 ms
42,520 KB
testcase_32 AC 327 ms
42,480 KB
testcase_33 AC 391 ms
38,044 KB
testcase_34 AC 431 ms
40,352 KB
testcase_35 AC 362 ms
33,384 KB
testcase_36 AC 209 ms
28,032 KB
testcase_37 AC 441 ms
39,584 KB
testcase_38 AC 359 ms
36,000 KB
testcase_39 AC 265 ms
28,792 KB
testcase_40 AC 324 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