結果

問題 No.479 頂点は要らない
ユーザー nanaenanae
提出日時 2017-01-28 00:16:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 112,520 KB
最終ジャッジ日時 2024-06-06 06:12:05
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 39 ms
52,224 KB
testcase_15 WA -
testcase_16 AC 38 ms
51,840 KB
testcase_17 WA -
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 42 ms
55,424 KB
testcase_20 AC 43 ms
54,912 KB
testcase_21 AC 42 ms
53,760 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 150 ms
112,520 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

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 = list(range(0, 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())

max_v = n - 1

while max_v >= 0:
    for node in sorted(edges[max_v], reverse=True):
        buy[node] = '1'
        if max_v - 1 == node:
            max_v = node - 1
        else:
            max_v -= 1


# debug(buy, locals())

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

print(ans)
0