結果

問題 No.945 YKC饅頭
ユーザー noriocnorioc
提出日時 2020-05-08 02:48:08
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 1,718 bytes
コンパイル時間 1,981 ms
コンパイル使用メモリ 180,420 KB
実行使用メモリ 95,084 KB
最終ジャッジ日時 2024-06-22 06:56:29
合計ジャッジ時間 36,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
70,656 KB
testcase_01 AC 358 ms
70,848 KB
testcase_02 AC 386 ms
72,424 KB
testcase_03 AC 357 ms
71,600 KB
testcase_04 AC 360 ms
70,720 KB
testcase_05 AC 349 ms
71,032 KB
testcase_06 AC 354 ms
71,504 KB
testcase_07 AC 355 ms
70,848 KB
testcase_08 AC 349 ms
70,752 KB
testcase_09 AC 368 ms
70,820 KB
testcase_10 AC 360 ms
70,960 KB
testcase_11 AC 356 ms
72,520 KB
testcase_12 AC 349 ms
71,180 KB
testcase_13 AC 354 ms
71,132 KB
testcase_14 AC 354 ms
71,272 KB
testcase_15 AC 356 ms
71,040 KB
testcase_16 AC 349 ms
70,796 KB
testcase_17 AC 359 ms
72,708 KB
testcase_18 AC 353 ms
70,708 KB
testcase_19 AC 352 ms
71,232 KB
testcase_20 AC 354 ms
71,316 KB
testcase_21 AC 350 ms
71,368 KB
testcase_22 AC 405 ms
71,268 KB
testcase_23 AC 353 ms
71,148 KB
testcase_24 AC 357 ms
70,924 KB
testcase_25 AC 361 ms
71,432 KB
testcase_26 AC 351 ms
71,256 KB
testcase_27 AC 359 ms
70,560 KB
testcase_28 AC 354 ms
70,720 KB
testcase_29 AC 349 ms
70,488 KB
testcase_30 AC 356 ms
70,860 KB
testcase_31 AC 375 ms
71,888 KB
testcase_32 AC 361 ms
71,132 KB
testcase_33 AC 387 ms
77,960 KB
testcase_34 AC 469 ms
86,452 KB
testcase_35 AC 539 ms
87,024 KB
testcase_36 AC 503 ms
87,044 KB
testcase_37 AC 489 ms
87,860 KB
testcase_38 AC 487 ms
86,776 KB
testcase_39 AC 387 ms
76,056 KB
testcase_40 AC 389 ms
74,756 KB
testcase_41 AC 394 ms
70,876 KB
testcase_42 AC 573 ms
87,456 KB
testcase_43 AC 494 ms
87,144 KB
testcase_44 AC 510 ms
87,120 KB
testcase_45 AC 539 ms
91,856 KB
testcase_46 AC 354 ms
71,192 KB
testcase_47 AC 466 ms
86,672 KB
testcase_48 AC 372 ms
75,880 KB
testcase_49 AC 386 ms
79,772 KB
testcase_50 AC 543 ms
92,120 KB
testcase_51 AC 567 ms
95,084 KB
testcase_52 AC 572 ms
94,064 KB
testcase_53 AC 559 ms
93,900 KB
testcase_54 AC 573 ms
93,540 KB
testcase_55 AC 563 ms
94,336 KB
testcase_56 AC 358 ms
70,616 KB
testcase_57 AC 346 ms
70,620 KB
testcase_58 AC 493 ms
87,912 KB
testcase_59 AC 519 ms
87,220 KB
testcase_60 AC 407 ms
81,320 KB
testcase_61 AC 506 ms
87,140 KB
testcase_62 AC 499 ms
86,972 KB
testcase_63 AC 360 ms
70,876 KB
testcase_64 AC 416 ms
83,676 KB
testcase_65 AC 390 ms
81,800 KB
testcase_66 AC 392 ms
79,220 KB
testcase_67 AC 477 ms
87,876 KB
testcase_68 AC 413 ms
82,700 KB
testcase_69 AC 374 ms
75,688 KB
testcase_70 AC 370 ms
75,520 KB
testcase_71 AC 366 ms
75,300 KB
testcase_72 AC 410 ms
85,892 KB
testcase_73 AC 510 ms
87,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

const segSize = 1 << 20;
int[][] seg;

void update(int l, int r, int v, int time) {
    l += segSize;
    r += segSize;
    while (l < r) {
        if (l % 2 == 1) {
            seg[l][v] = time;
            l++;
        }
        l /= 2;
        if (r % 2 == 1) {
            seg[r - 1][v] = time;
            r--;
        }
        r /= 2;
    }
}

// 親の更新を子に伝搬する(親は更新されない)
void propagate() {
    void rec(int ind) {
        // 子がいない
        if (ind * 2 >= seg.length) return;

        int lt = ind * 2;
        int rt = ind * 2 + 1;
        foreach (i; 0..3) { // Y, K, C
            seg[lt][i] = max(seg[lt][i], seg[ind][i]);
            seg[rt][i] = max(seg[rt][i], seg[ind][i]);
        }
        rec(lt);
        rec(rt);
    }
    rec(1);
}

alias Q = Tuple!(int, "l", int, "r", int, "t");

int toInt(string c) {
    if (c == "Y") return 0;
    if (c == "K") return 1;
    return 2;
}

void main() {
    int n, m; scan(n, m);

    seg = new int[][](segSize * 2, 3);
    Q[] qs;
    foreach (_; 0..m) {
        int l, r; string t; scan(l, r, t);
        qs ~= Q(l, r, toInt(t));
    }

    int time = 1;
    foreach_reverse (q; qs) {
        update(q.l, q.r + 1, q.t, time++);
    }

    propagate();
    auto ans = [0, 0, 0];
    auto nodes = seg[segSize+1..$].take(n);
    foreach (e; nodes) {
        if (e.sum == 0) continue; // 饅頭がない
        ans[e.maxIndex]++;
    }
    writeln(ans.map!text.join(' '));
}

void scan(T...)(ref T a) {
    string[] ss = readln.split;
    foreach (i, t; T) a[i] = ss[i].to!t;
}
T read(T=string)() { return readln.chomp.to!T; }
T[] reads(T)() { return readln.split.to!(T[]); }
alias readints = reads!int;
0