結果

問題 No.833 かっこいい電車
ユーザー jupirojupiro
提出日時 2020-03-13 17:08:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 2,005 bytes
コンパイル時間 1,593 ms
コンパイル使用メモリ 121,856 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-11-22 09:38:26
合計ジャッジ時間 5,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
6,016 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 67 ms
6,272 KB
testcase_11 AC 97 ms
7,808 KB
testcase_12 AC 27 ms
5,248 KB
testcase_13 AC 17 ms
5,248 KB
testcase_14 AC 80 ms
7,808 KB
testcase_15 AC 38 ms
5,888 KB
testcase_16 AC 34 ms
6,912 KB
testcase_17 AC 19 ms
5,248 KB
testcase_18 AC 80 ms
6,444 KB
testcase_19 AC 31 ms
6,400 KB
testcase_20 AC 9 ms
5,248 KB
testcase_21 AC 57 ms
5,248 KB
testcase_22 AC 57 ms
8,320 KB
testcase_23 AC 36 ms
6,656 KB
testcase_24 AC 55 ms
7,936 KB
testcase_25 AC 73 ms
6,016 KB
testcase_26 AC 38 ms
6,912 KB
testcase_27 AC 54 ms
6,272 KB
testcase_28 AC 35 ms
5,248 KB
testcase_29 AC 45 ms
5,784 KB
testcase_30 AC 70 ms
8,832 KB
testcase_31 AC 48 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1 << 28;
//constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

class BIT {
private:
	int N;
	vector<ll> node;
public:
	BIT(int M) {
		node = vector<ll>(M + 1, 0);
		N = M;
	}

	ll sum(int i) {
		ll s = 0;
		while (i > 0) {
			s += node[i];
			i -= i & -i;
		}
		return s;
	}

	ll sum(int i, int j) {
		ll l = sum(i - 1);
		ll r = sum(j);
		return r - l;
	}

	void add(int i, ll x) {
		while (i <= N) {
			node[i] += x;
			i += i & -i;
		}
	}
};

int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	int N, Q; scanf("%d %d", &N, &Q);
	BIT bit(N + 1);
	for (int i = 0; i < N; i++) {
		int x; scanf("%d", &x);
		bit.add(i + 1, x);
	}
	set<int> s; for (int i = 1; i <= N + 1; i++) s.insert(i);
	while (Q--) {
		int q; scanf("%d", &q);
		int x; scanf("%d", &x);
		if (q == 1) {
			if (s.find(x + 1) != s.end()) s.erase(s.find(x + 1));
		}
		if (q == 2) {
			s.insert(x + 1);
		}
		if (q == 3) {
			bit.add(x, 1);
		}
		if (q == 4) {
			auto itr2 = s.upper_bound(x);
			auto itr1 = prev(itr2);
			printf("%lld\n", bit.sum(*itr1, *itr2 - 1));
		}
	}
	return 0;
	/*
		おまじないを使ったらscanfとprintf関連注意!!!!!!!!!!!!
	*/
}
0