답안 #1044624

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1044624 2024-08-05T11:47:54 Z Kel_Mahmut 가로등 (APIO19_street_lamps) C++14
0 / 100
1 ms 348 KB
#include <bits/stdc++.h>
#define pb push_back
#define endl ("\n")
#define all(aa) aa.begin(), aa.end()
typedef long long ll;
using namespace std;

int main(){
	int n, q;
	cin >> n >> q;
	vector<int> v(n);
	string s;
	cin >> s;
	for(int i = 0; i < n; i++) v[i] = (s[i] == '1');

	vector<vector<pair<int, int>>> Q;
	for(int i = 1; i <= q; i++){
		string t;
		cin >> t;
		if(t == "toggle"){
			int a; cin >> a; a--;
			Q[a].pb({i, 0});
		}
		else{
			int l, r; cin >> l >> r;
			l--, r -= 2;
			assert(l == r);
			Q[l].pb({i, 1});
		}
	}
	vector<int> ans(q + 1, -1);
	for(int i = 0; i < n; i++){
		ll one = v[i];
		ll cev = 0;
		ll time = 0;
		for(auto [a, t] : Q[i]){
			cev += one * (a - time);
			if(t == 0){
				one ^=1;
			}
			else{
				ans[a] = cev;
			}
			time = a;
		}
	}

	for(int i = 0; i <= q; i++){
		if(ans[i] != -1){
			cout << ans[i] << endl;
		}
	}

}

Compilation message

street_lamps.cpp: In function 'int main()':
street_lamps.cpp:36:12: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
   36 |   for(auto [a, t] : Q[i]){
      |            ^
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 0 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -