結果

問題 No.945 YKC饅頭
ユーザー tnakao0123tnakao0123
提出日時 2019-12-08 20:16:37
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,999 bytes
コンパイル時間 786 ms
コンパイル使用メモリ 87,500 KB
実行使用メモリ 8,016 KB
最終ジャッジ日時 2024-12-31 11:51:45
合計ジャッジ時間 6,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 3 ms
6,824 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,824 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 8 ms
6,816 KB
testcase_32 AC 4 ms
6,820 KB
testcase_33 AC 27 ms
6,816 KB
testcase_34 AC 68 ms
6,864 KB
testcase_35 AC 110 ms
7,628 KB
testcase_36 AC 86 ms
6,824 KB
testcase_37 AC 80 ms
6,816 KB
testcase_38 AC 74 ms
6,820 KB
testcase_39 AC 17 ms
7,760 KB
testcase_40 AC 14 ms
6,820 KB
testcase_41 AC 7 ms
6,816 KB
testcase_42 AC 102 ms
7,504 KB
testcase_43 AC 75 ms
6,816 KB
testcase_44 AC 84 ms
7,120 KB
testcase_45 AC 112 ms
7,632 KB
testcase_46 AC 4 ms
6,820 KB
testcase_47 AC 66 ms
7,116 KB
testcase_48 AC 16 ms
6,820 KB
testcase_49 AC 28 ms
6,820 KB
testcase_50 AC 119 ms
7,120 KB
testcase_51 AC 132 ms
7,888 KB
testcase_52 AC 132 ms
8,012 KB
testcase_53 AC 133 ms
7,628 KB
testcase_54 AC 134 ms
7,760 KB
testcase_55 AC 132 ms
8,016 KB
testcase_56 AC 3 ms
6,816 KB
testcase_57 AC 3 ms
6,820 KB
testcase_58 AC 64 ms
7,376 KB
testcase_59 AC 78 ms
7,384 KB
testcase_60 AC 29 ms
6,816 KB
testcase_61 AC 69 ms
7,128 KB
testcase_62 AC 66 ms
6,988 KB
testcase_63 AC 4 ms
6,820 KB
testcase_64 AC 32 ms
6,820 KB
testcase_65 AC 26 ms
7,240 KB
testcase_66 AC 25 ms
7,116 KB
testcase_67 AC 49 ms
6,868 KB
testcase_68 AC 30 ms
7,120 KB
testcase_69 AC 12 ms
6,820 KB
testcase_70 AC 14 ms
6,820 KB
testcase_71 AC 15 ms
6,992 KB
testcase_72 AC 38 ms
6,820 KB
testcase_73 AC 74 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