結果

問題 No.945 YKC饅頭
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-29 17:43:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 914 ms / 2,000 ms
コード長 1,098 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-11-22 06:58:05
合計ジャッジ時間 25,990 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 33 ms
10,624 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 33 ms
10,624 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 34 ms
10,752 KB
testcase_24 AC 35 ms
10,880 KB
testcase_25 AC 34 ms
10,880 KB
testcase_26 AC 35 ms
10,880 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,880 KB
testcase_30 AC 29 ms
10,752 KB
testcase_31 AC 104 ms
12,672 KB
testcase_32 AC 198 ms
16,000 KB
testcase_33 AC 332 ms
16,768 KB
testcase_34 AC 476 ms
16,128 KB
testcase_35 AC 786 ms
19,200 KB
testcase_36 AC 497 ms
11,392 KB
testcase_37 AC 462 ms
11,648 KB
testcase_38 AC 439 ms
12,544 KB
testcase_39 AC 223 ms
15,232 KB
testcase_40 AC 280 ms
17,948 KB
testcase_41 AC 180 ms
14,476 KB
testcase_42 AC 631 ms
14,592 KB
testcase_43 AC 445 ms
11,008 KB
testcase_44 AC 648 ms
17,408 KB
testcase_45 AC 667 ms
13,184 KB
testcase_46 AC 126 ms
14,592 KB
testcase_47 AC 485 ms
14,848 KB
testcase_48 AC 126 ms
11,520 KB
testcase_49 AC 291 ms
15,616 KB
testcase_50 AC 704 ms
13,696 KB
testcase_51 AC 911 ms
18,944 KB
testcase_52 AC 913 ms
19,396 KB
testcase_53 AC 914 ms
17,912 KB
testcase_54 AC 902 ms
19,200 KB
testcase_55 AC 910 ms
20,120 KB
testcase_56 AC 248 ms
20,608 KB
testcase_57 AC 89 ms
16,512 KB
testcase_58 AC 718 ms
17,408 KB
testcase_59 AC 819 ms
17,408 KB
testcase_60 AC 423 ms
17,536 KB
testcase_61 AC 765 ms
17,408 KB
testcase_62 AC 764 ms
17,408 KB
testcase_63 AC 57 ms
15,616 KB
testcase_64 AC 452 ms
17,536 KB
testcase_65 AC 382 ms
17,408 KB
testcase_66 AC 374 ms
17,408 KB
testcase_67 AC 603 ms
17,536 KB
testcase_68 AC 436 ms
17,408 KB
testcase_69 AC 187 ms
17,280 KB
testcase_70 AC 227 ms
17,536 KB
testcase_71 AC 230 ms
17,536 KB
testcase_72 AC 532 ms
17,408 KB
testcase_73 AC 807 ms
17,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * n
        self.rank = [0] * n

    def find(self, x):
        stack = []
        while self.root[x] > 0:
            stack.append(x)
            x = self.root[x]
        for i in stack:
            self.root[i] = x
        return x

    def isSame(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if x > y:
            x, y = y, x
        self.root[y] += self.root[x]
        self.root[x] = y
        return True

    def size(self, x):
        return -self.root[self.find(x)]


N, M = map(int, input().split())

yck = [0] * N
uf = UF_tree(N+1)
ans = [0, 0, 0]

for _ in range(M):
    l, r, t = input().rstrip().split()
    L = int(l) - 1
    R = int(r)
    i = "YKC".find(t)

    while L < R:
        if not yck[L]:
            ans[i] += 1
        yck[L] = 1
        uf.unite(L, L+1)
        L = uf.find(L)

print(*ans)
0