답안 #834784

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
834784 2023-08-22T19:22:51 Z mat_jur Growing Trees (BOI11_grow) C++17
0 / 100
1000 ms 8404 KB
#include <bits/stdc++.h>
using namespace std;
#ifdef DEBUG
auto&operator<<(auto &o, pair<auto, auto> p) {o << "(" << p.first << "," << p.second << ")"; return o;}
auto operator<<(auto&o,auto x)->decltype(x.end(),o){o<<"{";for(auto e:x)o<< e << ", ";return o<<"}";}
#define debug(X) cerr << "["#X"]:" << X << '\n';
#else 
#define debug(X) ;
#endif
#define ll long long

int main () {
	int n, q;
	cin >> n >> q;
	vector<int> cnt(1000000);
	for (int i = 0; i < n; i++) {
		int a;
		cin >> a;
		cnt[a]++;
	}
	while (q--) {
		char c;
		cin >> c;
		if (c == 'F') {
			int c, h;
			cin >> c >> h;
			int y = 0;
			while (c > 0) {
				cnt[h] += y;
				int x = min(cnt[h], c);
				cnt[h] -= x;
				y = x;
				c -= x;
				h++;
			}
			cnt[h] += y;
		}
		else {
			int res = 0;
			int l, r;
			cin >> l >> r;
			for (int i = l; i <= r; i++) {
				res += cnt[i];
			}
			cout << res << '\n';
		}
	}

	return 0;
}

# 결과 실행 시간 메모리 Grader output
1 Runtime error 22 ms 8276 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 4180 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 23 ms 8404 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 9 ms 8276 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 155 ms 4260 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 497 ms 4380 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 197 ms 4284 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 32 ms 8332 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 826 ms 4348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1065 ms 4556 KB Time limit exceeded
2 Halted 0 ms 0 KB -