結果

問題 No.945 YKC饅頭
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-12-08 00:04:30
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 384 ms / 2,000 ms
コード長 2,071 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 165,464 KB
実行使用メモリ 31,892 KB
最終ジャッジ日時 2024-06-22 03:24:09
合計ジャッジ時間 11,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 12 ms
6,940 KB
testcase_32 AC 6 ms
6,944 KB
testcase_33 AC 60 ms
12,556 KB
testcase_34 AC 178 ms
16,392 KB
testcase_35 AC 283 ms
25,956 KB
testcase_36 AC 259 ms
18,600 KB
testcase_37 AC 231 ms
16,916 KB
testcase_38 AC 204 ms
15,224 KB
testcase_39 AC 38 ms
8,092 KB
testcase_40 AC 32 ms
10,536 KB
testcase_41 AC 13 ms
6,948 KB
testcase_42 AC 278 ms
22,624 KB
testcase_43 AC 232 ms
15,864 KB
testcase_44 AC 221 ms
21,036 KB
testcase_45 AC 330 ms
23,604 KB
testcase_46 AC 5 ms
6,944 KB
testcase_47 AC 170 ms
18,400 KB
testcase_48 AC 40 ms
6,996 KB
testcase_49 AC 66 ms
12,080 KB
testcase_50 AC 338 ms
22,056 KB
testcase_51 AC 384 ms
31,384 KB
testcase_52 AC 379 ms
31,816 KB
testcase_53 AC 384 ms
31,104 KB
testcase_54 AC 361 ms
31,820 KB
testcase_55 AC 371 ms
31,624 KB
testcase_56 AC 7 ms
10,592 KB
testcase_57 AC 5 ms
9,908 KB
testcase_58 AC 175 ms
24,968 KB
testcase_59 AC 214 ms
31,892 KB
testcase_60 AC 77 ms
18,908 KB
testcase_61 AC 186 ms
27,724 KB
testcase_62 AC 189 ms
24,804 KB
testcase_63 AC 8 ms
9,516 KB
testcase_64 AC 81 ms
21,980 KB
testcase_65 AC 69 ms
18,636 KB
testcase_66 AC 60 ms
19,032 KB
testcase_67 AC 124 ms
20,776 KB
testcase_68 AC 76 ms
19,368 KB
testcase_69 AC 30 ms
11,348 KB
testcase_70 AC 34 ms
14,160 KB
testcase_71 AC 34 ms
12,452 KB
testcase_72 AC 102 ms
20,812 KB
testcase_73 AC 203 ms
28,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }




void main() {
  try {
    for (; ; ) {
      const N = readInt();
      const M = readInt();
      auto L = new int[M];
      auto R = new int[M];
      auto T = new string[M];
      foreach (i; 0 .. M) {
        L[i] = readInt() - 1;
        R[i] = readInt();
        T[i] = readToken();
      }
      
      auto adds = new int[][N + 1];
      auto rems = new int[][N + 1];
      foreach (i; 0 .. M) {
        adds[L[i]] ~= i;
        rems[R[i]] ~= i;
      }
      
      auto set = new RedBlackTree!int;
      int[3] ans;
      foreach (x; 0 .. N) {
        foreach (i; adds[x]) {
          set.insert(i);
        }
        foreach (i; rems[x]) {
          set.removeKey(i);
        }
        if (!set.empty) {
          const i0 = set.front;
          ++ans["YKC".indexOf(T[i0][0])];
        }
      }
      writeln(ans[0], " ", ans[1], " ", ans[2]);
    }
  } catch (EOFException e) {
  }
}
0