結果
問題 | No.1640 簡単な色塗り |
ユーザー | ansain |
提出日時 | 2021-08-07 03:54:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 812 ms / 2,000 ms |
コード長 | 3,716 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 13,184 KB |
実行使用メモリ | 83,092 KB |
最終ジャッジ日時 | 2024-06-29 16:41:15 |
合計ジャッジ時間 | 26,708 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,768 KB |
testcase_01 | AC | 29 ms
11,136 KB |
testcase_02 | AC | 26 ms
11,264 KB |
testcase_03 | AC | 31 ms
11,136 KB |
testcase_04 | AC | 367 ms
58,960 KB |
testcase_05 | AC | 531 ms
83,036 KB |
testcase_06 | AC | 28 ms
11,264 KB |
testcase_07 | AC | 27 ms
11,136 KB |
testcase_08 | AC | 26 ms
11,136 KB |
testcase_09 | AC | 26 ms
11,136 KB |
testcase_10 | AC | 387 ms
50,532 KB |
testcase_11 | AC | 303 ms
43,536 KB |
testcase_12 | AC | 257 ms
40,768 KB |
testcase_13 | AC | 638 ms
75,108 KB |
testcase_14 | AC | 622 ms
75,304 KB |
testcase_15 | AC | 189 ms
33,556 KB |
testcase_16 | AC | 237 ms
37,628 KB |
testcase_17 | AC | 525 ms
59,944 KB |
testcase_18 | AC | 61 ms
16,128 KB |
testcase_19 | AC | 257 ms
40,284 KB |
testcase_20 | AC | 366 ms
48,748 KB |
testcase_21 | AC | 293 ms
42,744 KB |
testcase_22 | AC | 55 ms
13,952 KB |
testcase_23 | AC | 396 ms
51,568 KB |
testcase_24 | AC | 108 ms
22,016 KB |
testcase_25 | AC | 258 ms
40,632 KB |
testcase_26 | AC | 437 ms
55,440 KB |
testcase_27 | AC | 182 ms
32,812 KB |
testcase_28 | AC | 631 ms
72,964 KB |
testcase_29 | AC | 455 ms
55,204 KB |
testcase_30 | AC | 81 ms
18,688 KB |
testcase_31 | AC | 616 ms
60,800 KB |
testcase_32 | AC | 453 ms
54,400 KB |
testcase_33 | AC | 283 ms
40,704 KB |
testcase_34 | AC | 394 ms
47,744 KB |
testcase_35 | AC | 280 ms
40,576 KB |
testcase_36 | AC | 79 ms
18,688 KB |
testcase_37 | AC | 105 ms
21,504 KB |
testcase_38 | AC | 472 ms
56,064 KB |
testcase_39 | AC | 179 ms
30,464 KB |
testcase_40 | AC | 184 ms
30,976 KB |
testcase_41 | AC | 396 ms
48,896 KB |
testcase_42 | AC | 210 ms
33,664 KB |
testcase_43 | AC | 235 ms
34,560 KB |
testcase_44 | AC | 222 ms
34,048 KB |
testcase_45 | AC | 161 ms
28,416 KB |
testcase_46 | AC | 85 ms
19,456 KB |
testcase_47 | AC | 64 ms
16,256 KB |
testcase_48 | AC | 480 ms
57,216 KB |
testcase_49 | AC | 43 ms
13,312 KB |
testcase_50 | AC | 26 ms
11,008 KB |
testcase_51 | AC | 26 ms
11,136 KB |
testcase_52 | AC | 788 ms
83,092 KB |
testcase_53 | AC | 812 ms
82,868 KB |
07_evil_01.txt | AC | 1,984 ms
155,252 KB |
07_evil_02.txt | TLE | - |
ソースコード
from collections import defaultdict import sys from collections import defaultdict, Counter, deque from itertools import permutations, combinations, product, combinations_with_replacement, groupby, accumulate import operator from math import sqrt, gcd, factorial # from math import isqrt, prod, comb #python3.8用(notpypy) #from bisect import bisect_left, bisect_right #from functools import lru_cache, reduce #from heapq import heappush, heappop, heapify, heappushpop, heapreplace #import numpy as np #import networkx as nx #from networkx.utils import UnionFind #from numba import njit, b1, i1, i4, i8, f8 # numba例 @njit(i1(i4[:], i8[:, :]),cache=True) 引数i4配列、i8 2次元配列,戻り値i1 #from scipy.sparse import csr_matrix #from scipy.sparse.csgraph import shortest_path, floyd_warshall, dijkstra, bellman_ford, johnson, NegativeCycleError, maximum_bipartite_matching, maximum_flow, minimum_spanning_tree def input(): return sys.stdin.readline().rstrip() def divceil(n, k): return 1+(n-1)//k # n/kの切り上げを返す def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no) # https://note.nkmk.me/python-union-find/から一部改変 class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n self.group_num = n self.check = [0]*n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return self.group_num -= 1 if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x self.check[x] |= self.check[y] def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return self.group_num def all_group_members(self): self.all_group_member = defaultdict(list) for i in range(self.n): self.all_group_member[self.find(i)].append(i) return self.all_group_member def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) def main(): mod = 10**9+7 mod2 = 998244353 n = int(input()) uf = UnionFind(n) ab = [list(map(lambda x: int(x)-1, input().split())) for i in range(n)] ans = [None]*n left = [] edges = [[] for i in range(n)] for i, (a, b) in enumerate(ab): if uf.same(a, b): if uf.check[uf.find(a)]: yn(0) return uf.check[uf.find(a)] = 1 left.append(a) ans[i] = a+1 else: uf.union(a, b) edges[b].append([a, i]) edges[a].append([b, i]) if 0 != 0: pass else: #yn(1) d = deque() dist = [-1]*n for l in left: d.append(l) dist[l] = 0 while d: v = d.popleft() for i, edgenum in edges[v]: if dist[i] != -1: continue dist[i] = dist[v] + 1 ans[edgenum] = i+1 d.append(i) if set(ans)==set(range(1,n+1)): yn(1) print(*ans, sep="\n") else: yn(0) if __name__ == '__main__': main()