結果

問題 No.945 YKC饅頭
ユーザー rlangevinrlangevin
提出日時 2023-12-07 00:46:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 357 ms / 2,000 ms
コード長 1,469 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,660 KB
最終ジャッジ日時 2024-09-27 01:56:23
合計ジャッジ時間 11,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 38 ms
58,624 KB
testcase_03 AC 48 ms
65,908 KB
testcase_04 AC 35 ms
52,736 KB
testcase_05 AC 47 ms
64,640 KB
testcase_06 AC 52 ms
66,688 KB
testcase_07 AC 50 ms
65,024 KB
testcase_08 AC 39 ms
58,112 KB
testcase_09 AC 42 ms
60,032 KB
testcase_10 AC 51 ms
65,664 KB
testcase_11 AC 43 ms
60,032 KB
testcase_12 AC 47 ms
64,768 KB
testcase_13 AC 52 ms
67,072 KB
testcase_14 AC 49 ms
65,664 KB
testcase_15 AC 40 ms
59,264 KB
testcase_16 AC 42 ms
59,264 KB
testcase_17 AC 44 ms
60,928 KB
testcase_18 AC 51 ms
65,024 KB
testcase_19 AC 42 ms
60,160 KB
testcase_20 AC 41 ms
58,368 KB
testcase_21 AC 39 ms
58,880 KB
testcase_22 AC 57 ms
68,992 KB
testcase_23 AC 58 ms
68,608 KB
testcase_24 AC 53 ms
68,480 KB
testcase_25 AC 56 ms
69,084 KB
testcase_26 AC 57 ms
69,632 KB
testcase_27 AC 41 ms
60,160 KB
testcase_28 AC 41 ms
61,056 KB
testcase_29 AC 36 ms
51,968 KB
testcase_30 AC 33 ms
52,352 KB
testcase_31 AC 88 ms
78,080 KB
testcase_32 AC 87 ms
82,048 KB
testcase_33 AC 115 ms
82,792 KB
testcase_34 AC 127 ms
80,384 KB
testcase_35 AC 155 ms
84,480 KB
testcase_36 AC 124 ms
77,024 KB
testcase_37 AC 125 ms
77,724 KB
testcase_38 AC 122 ms
78,548 KB
testcase_39 AC 102 ms
80,128 KB
testcase_40 AC 109 ms
82,688 KB
testcase_41 AC 98 ms
81,024 KB
testcase_42 AC 143 ms
80,512 KB
testcase_43 AC 123 ms
76,544 KB
testcase_44 AC 140 ms
83,200 KB
testcase_45 AC 149 ms
79,488 KB
testcase_46 AC 84 ms
79,744 KB
testcase_47 AC 124 ms
81,456 KB
testcase_48 AC 92 ms
77,056 KB
testcase_49 AC 108 ms
81,332 KB
testcase_50 AC 159 ms
80,384 KB
testcase_51 AC 170 ms
85,736 KB
testcase_52 AC 171 ms
85,948 KB
testcase_53 AC 171 ms
85,556 KB
testcase_54 AC 170 ms
85,632 KB
testcase_55 AC 171 ms
85,248 KB
testcase_56 AC 71 ms
74,240 KB
testcase_57 AC 62 ms
74,240 KB
testcase_58 AC 325 ms
89,660 KB
testcase_59 AC 357 ms
89,284 KB
testcase_60 AC 247 ms
87,444 KB
testcase_61 AC 337 ms
89,428 KB
testcase_62 AC 333 ms
89,128 KB
testcase_63 AC 75 ms
81,664 KB
testcase_64 AC 253 ms
88,036 KB
testcase_65 AC 217 ms
87,184 KB
testcase_66 AC 227 ms
87,168 KB
testcase_67 AC 277 ms
87,612 KB
testcase_68 AC 227 ms
87,664 KB
testcase_69 AC 147 ms
85,888 KB
testcase_70 AC 159 ms
85,248 KB
testcase_71 AC 167 ms
86,236 KB
testcase_72 AC 282 ms
88,340 KB
testcase_73 AC 347 ms
89,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
        self.nex = [i for i in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        v = max(self.nex[x], self.nex[y])
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]
            self.nex[x] = self.nex[y] = v

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

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]


N, M = map(int, input().split())
ans = [-1] * N
U = UnionFind(N + 1)
for i in range(M):
    L, R, T = input().split()
    L, R = int(L) - 1, int(R) - 1
    now = L
    while now <= R:
        if ans[now] == -1:
            ans[now] = T
        if now != R:
            U.union(now, now+1)
        now = U.nex[U.find(now)]
        # print("tst", L, R, now, ans, U.nex)
        if now == R and ans[now] != -1:
            break
    
print(ans.count("Y"), ans.count("K"), ans.count("C"))
0