結果

問題 No.2942 Sigma Music Game Level Problem
ユーザー tnakao0123tnakao0123
提出日時 2024-10-21 11:10:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,574 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 56,648 KB
実行使用メモリ 9,088 KB
最終ジャッジ日時 2024-11-07 22:08:53
合計ジャッジ時間 8,476 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 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 4 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 WA -
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 4 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 466 ms
8,192 KB
testcase_13 WA -
testcase_14 AC 253 ms
8,320 KB
testcase_15 AC 177 ms
8,448 KB
testcase_16 AC 355 ms
5,888 KB
testcase_17 AC 94 ms
6,528 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 139 ms
7,296 KB
testcase_21 AC 430 ms
8,960 KB
testcase_22 AC 433 ms
8,960 KB
testcase_23 AC 153 ms
6,016 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

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), bit1.init(MAX_M);
  for (int i = 0; i < n; i++) {
    bit0.add(as[i], 1);
    bit1.add(as[i], as[i]);
  }

  int q2 = 0;
  while (qn--) {
    int op;
    scanf("%d", &op);

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

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

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

      li = m;
    }
  }
  
  if (q2 == 0) puts("Not Found!");
  
  return 0;
}
0