結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー tnakao0123tnakao0123
提出日時 2024-10-21 11:40:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 493 ms / 6,000 ms
コード長 1,661 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 57,456 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-11-14 23:07:00
合計ジャッジ時間 9,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 4 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 4 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 AC 208 ms
7,680 KB
testcase_12 AC 431 ms
8,320 KB
testcase_13 AC 401 ms
6,272 KB
testcase_14 AC 247 ms
8,264 KB
testcase_15 AC 179 ms
8,624 KB
testcase_16 AC 358 ms
5,888 KB
testcase_17 AC 99 ms
6,656 KB
testcase_18 AC 278 ms
6,656 KB
testcase_19 AC 472 ms
6,784 KB
testcase_20 AC 141 ms
7,456 KB
testcase_21 AC 445 ms
8,960 KB
testcase_22 AC 442 ms
9,032 KB
testcase_23 AC 152 ms
6,144 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 4 ms
5,248 KB
testcase_26 AC 493 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2942.cc:  No.2942 Sigma Music Game Level Problem - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 1000000;
const int MAX_M = 200000;

/* typedef */

using ll = long long;

template <typename T>
struct BIT {
  int n;
  vector<T> bits;
  
  BIT() {}
  BIT(int _n) { init(_n); }

  void init(int _n) {
    n = _n;
    bits.assign(n + 1, 0);
  }

  T sum(int x) {
    x = min(x, n);
    T s = 0;
    while (x > 0) {
      s += bits[x];
      x -= (x & -x);
    }
    return s;
  }

  void add(int x, T v) {
    if (x <= 0) return;
    while (x <= n) {
      bits[x] += v;
      x += (x & -x);
    }
  }
};

/* global variables */

int as[MAX_N];
BIT<int> bit0;
BIT<ll> bit1;

/* subroutines */

/* main */

int main() {
  int n, qn, li;
  scanf("%d%d%d", &n, &qn, &li);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  bit0.init(MAX_M + 1);
  bit1.init(MAX_M + 1);
  for (int i = 0; i < n; i++) {
    bit0.add(as[i] + 1, 1);
    bit1.add(as[i] + 1, as[i]);
  }

  int qcs[3] = {0, 0, 0};
  while (qn--) {
    int op;
    scanf("%d", &op);
    qcs[op - 1]++;

    if (op == 1) {
      int l;
      scanf("%d", &l);

      bit0.add(l + 1, 1);
      bit1.add(l + 1, l);
    }
    else if (op == 2) {
      int l, r;
      scanf("%d%d", &l, &r);

      int c = bit0.sum(r + 1) - bit0.sum(l);
      ll s = bit1.sum(r + 1) - bit1.sum(l);
      printf("%d %lld\n", c, s);
    }
    else {
      int m;
      scanf("%d", &m);

      li = m;
    }
  }
  
  if (! qcs[1]) puts("Not Found!");
  //printf(" %d %d %d\n", qcs[0], qcs[1], qcs[2]);
  
  return 0;
}
0