結果

問題 No.1023 Cyclic Tour
ユーザー maspymaspy
提出日時 2020-04-10 22:56:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 912 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 105,104 KB
最終ジャッジ日時 2024-09-15 23:25:03
合計ジャッジ時間 88,028 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 951 ms
54,520 KB
testcase_01 AC 954 ms
54,516 KB
testcase_02 AC 962 ms
54,520 KB
testcase_03 AC 946 ms
54,772 KB
testcase_04 AC 1,381 ms
80,976 KB
testcase_05 AC 1,393 ms
81,708 KB
testcase_06 AC 1,444 ms
84,912 KB
testcase_07 AC 1,404 ms
81,872 KB
testcase_08 AC 1,334 ms
77,652 KB
testcase_09 AC 1,328 ms
77,716 KB
testcase_10 AC 1,322 ms
76,900 KB
testcase_11 AC 1,361 ms
78,760 KB
testcase_12 AC 1,315 ms
78,084 KB
testcase_13 AC 1,293 ms
76,748 KB
testcase_14 AC 1,302 ms
76,544 KB
testcase_15 AC 1,311 ms
77,708 KB
testcase_16 AC 1,632 ms
100,444 KB
testcase_17 AC 1,680 ms
101,416 KB
testcase_18 AC 1,672 ms
103,556 KB
testcase_19 AC 1,651 ms
101,020 KB
testcase_20 AC 1,770 ms
102,908 KB
testcase_21 AC 1,764 ms
102,672 KB
testcase_22 AC 1,695 ms
101,696 KB
testcase_23 AC 1,770 ms
103,236 KB
testcase_24 AC 1,806 ms
104,148 KB
testcase_25 AC 1,720 ms
102,328 KB
testcase_26 AC 1,733 ms
103,300 KB
testcase_27 AC 1,698 ms
102,320 KB
testcase_28 AC 1,685 ms
103,324 KB
testcase_29 AC 1,624 ms
102,020 KB
testcase_30 AC 1,703 ms
104,416 KB
testcase_31 AC 1,665 ms
100,532 KB
testcase_32 AC 1,672 ms
101,496 KB
testcase_33 AC 1,830 ms
104,396 KB
testcase_34 AC 1,806 ms
101,896 KB
testcase_35 AC 1,752 ms
102,912 KB
testcase_36 AC 1,738 ms
102,124 KB
testcase_37 AC 1,680 ms
101,220 KB
testcase_38 AC 1,609 ms
100,568 KB
testcase_39 AC 1,729 ms
102,416 KB
testcase_40 AC 1,704 ms
102,792 KB
testcase_41 AC 1,692 ms
102,872 KB
testcase_42 AC 1,744 ms
104,212 KB
testcase_43 AC 1,637 ms
100,756 KB
testcase_44 AC 1,378 ms
82,008 KB
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 AC 1,742 ms
105,104 KB
testcase_49 AC 1,770 ms
104,944 KB
testcase_50 AC 1,766 ms
104,268 KB
testcase_51 AC 1,764 ms
104,692 KB
testcase_52 AC 1,776 ms
104,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from scipy.sparse import csr_matrix
from scipy.sparse.csgraph import connected_components
import numpy as np
N, M = map(int, readline().split())
AB1 = []
AB2 = []
m = map(int, read().split())
for a, b, c in zip(m, m, m):
    if c == 1:
        AB1.append((a, b))
    else:
        AB2.append((a, b))
A1, B1 = zip(*AB1)
A2, B2 = zip(*AB2)
U = A1 + B1 + A2
V = B1 + A1 + B2
G = csr_matrix(([1] * len(U), (U, V)), (N + 1, N + 1))
_, comp = connected_components(G, directed=True, connection='strong')
comp_size = np.bincount(comp)
C = comp.max()
comp = list(comp)

n_edges = [0] * (C + 1)
for a, b in AB1 + AB2:
    ca = comp[a]
    cb = comp[b]
    if ca != cb:
        continue
    n_edges[ca] += 1

bl = any(x <= y for x, y in zip(comp_size, n_edges))
answer = 'Yes' if bl else 'No'
print(answer)
0