結果

問題 No.479 頂点は要らない
ユーザー rpy3cpprpy3cpp
提出日時 2017-01-30 01:41:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 222 ms / 1,500 ms
コード長 529 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-12-23 23:49:30
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 32 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 33 ms
10,880 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 222 ms
29,440 KB
testcase_27 AC 220 ms
29,312 KB
testcase_28 AC 200 ms
30,464 KB
testcase_29 AC 157 ms
22,016 KB
testcase_30 AC 166 ms
22,144 KB
testcase_31 AC 159 ms
22,016 KB
testcase_32 AC 156 ms
21,888 KB
testcase_33 AC 165 ms
21,760 KB
testcase_34 AC 169 ms
22,272 KB
testcase_35 AC 144 ms
17,664 KB
testcase_36 AC 99 ms
14,080 KB
testcase_37 AC 169 ms
23,040 KB
testcase_38 AC 141 ms
20,352 KB
testcase_39 AC 115 ms
19,072 KB
testcase_40 AC 139 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def read_data():
    n, m = map(int, input().split())
    Es = [[] for v in range(n)]
    for line in sys.stdin:
        a, b = map(int, line.split())
        Es[a].append(b)
    return n, m, Es

def solve(n, m, Es):
    used = [0] * n
    for v in range(n - 1, -1, -1):
        for u in Es[v]:
            if not used[u]:
                used[v] = 1
                break
    while not used[-1]:
        used.pop()
    used.reverse()
    return ''.join(map(str, used))

n, m, Es = read_data()
print(solve(n, m, Es))
0