結果

問題 No.945 YKC饅頭
ユーザー tnakao0123tnakao0123
提出日時 2019-12-08 20:16:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 1,999 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 86,776 KB
実行使用メモリ 8,024 KB
最終ジャッジ日時 2024-06-10 03:23:40
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
7,884 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 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,944 KB
testcase_24 AC 2 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,944 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 6 ms
6,944 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 24 ms
6,944 KB
testcase_34 AC 60 ms
6,992 KB
testcase_35 AC 98 ms
7,500 KB
testcase_36 AC 76 ms
6,940 KB
testcase_37 AC 71 ms
6,944 KB
testcase_38 AC 65 ms
6,940 KB
testcase_39 AC 15 ms
6,940 KB
testcase_40 AC 12 ms
6,940 KB
testcase_41 AC 6 ms
6,944 KB
testcase_42 AC 88 ms
7,116 KB
testcase_43 AC 67 ms
6,944 KB
testcase_44 AC 74 ms
7,120 KB
testcase_45 AC 100 ms
7,124 KB
testcase_46 AC 3 ms
6,948 KB
testcase_47 AC 59 ms
6,944 KB
testcase_48 AC 14 ms
6,940 KB
testcase_49 AC 24 ms
6,940 KB
testcase_50 AC 105 ms
7,112 KB
testcase_51 AC 117 ms
7,496 KB
testcase_52 AC 117 ms
8,024 KB
testcase_53 AC 115 ms
7,760 KB
testcase_54 AC 117 ms
7,892 KB
testcase_55 AC 121 ms
7,884 KB
testcase_56 AC 3 ms
6,940 KB
testcase_57 AC 3 ms
6,948 KB
testcase_58 AC 56 ms
7,124 KB
testcase_59 AC 67 ms
7,884 KB
testcase_60 AC 25 ms
6,940 KB
testcase_61 AC 60 ms
7,372 KB
testcase_62 AC 57 ms
7,252 KB
testcase_63 AC 4 ms
6,944 KB
testcase_64 AC 28 ms
7,752 KB
testcase_65 AC 22 ms
6,948 KB
testcase_66 AC 21 ms
6,940 KB
testcase_67 AC 41 ms
6,940 KB
testcase_68 AC 27 ms
6,992 KB
testcase_69 AC 9 ms
6,944 KB
testcase_70 AC 12 ms
6,940 KB
testcase_71 AC 12 ms
6,940 KB
testcase_72 AC 33 ms
6,944 KB
testcase_73 AC 68 ms
7,372 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:92:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   92 |   scanf("%d%d", &n, &m);
      |   ~~~~~^~~~~~~~~~~~~~~~
main.cpp:96:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   96 |     scanf("%d%d%s", ls + i, rs + i, s);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 945.cc:  No.945 YKC饅頭 - yukicoder
 */

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<iostream>
#include<string>
#include<vector>
#include<map>
#include<set>
#include<stack>
#include<list>
#include<queue>
#include<deque>
#include<algorithm>
#include<numeric>
#include<utility>
#include<complex>
#include<functional>
 
using namespace std;

/* constant */

const int MAX_N = 200000;
const int MAX_E2 = 1 << 19; // = 524288
const int MAX_M = 200000;

/* typedef */

enum { NA, Y, K, C };

template <typename T, const int MAX_E2>
struct SegTree {
  int n, e2;
  T nodes[MAX_E2];
  SegTree() {}

  void init(int _n) {
    n = _n;
    for (e2 = 1; e2 < n; e2 <<= 1);
  }

  T &get(int i) { return nodes[e2 - 1 + i]; }

  void setall() {
    for (int j = 0; j < e2 - 1; j++)
      if (nodes[j]) {
	nodes[j * 2 + 1] = nodes[j * 2 + 2] = nodes[j];
	nodes[j] = NA;
      }
  }

  void set_range(int r0, int r1, T v, int k, int i0, int i1) {
    if (r1 <= i0 || i1 <= r0) return;
    if (r0 <= i0 && i1 <= r1) {
      nodes[k] = v;
      return;
    }

    int k0 = k * 2 + 1, k1 = k0 + 1;
    if (nodes[k]) {
      nodes[k0] = nodes[k1] = nodes[k];
      nodes[k] = NA;
    }

    int im = (i0 + i1) / 2;
    set_range(r0, r1, v, k0, i0, im);
    set_range(r0, r1, v, k1, im, i1);
  }
  void set_range(int r0, int r1, T v) { set_range(r0, r1, v, 0, 0, e2); }
};

/* global variables */

int cmap[128];
int ls[MAX_M], rs[MAX_M], ts[MAX_M], cs[4];
SegTree<int,MAX_E2> st;

/* subroutines */

/* main */

int main() {
  cmap['Y'] = Y, cmap['K'] = K, cmap['C'] = C;

  int n, m;
  scanf("%d%d", &n, &m);

  for (int i = 0; i < m; i++) {
    char s[4];
    scanf("%d%d%s", ls + i, rs + i, s);
    ls[i]--;
    ts[i] = cmap[s[0]];
  }

  st.init(n);

  for (int i = m - 1; i >= 0; i--)
    st.set_range(ls[i], rs[i], ts[i]);

  st.setall();

  for (int i = 0; i < n; i++) cs[st.get(i)]++;
  printf("%d %d %d\n", cs[Y], cs[K], cs[C]);
  return 0;
}
0