# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
934366 | vjudge1 | 가로등 (APIO19_street_lamps) | C++17 | 5047 ms | 524288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <fstream>
#define endl '\n'
#define mod 1000000007
#define INF 1000000000
#define INF2 2000000000000000000
//#define ll long long
///#define cin fin
///#define cout fout
using namespace std;
double const EPS = 1e-14;
///ofstream fout("herding.out");
///ifstream fin("herding.in");
int main()
{
ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);
int n, q; cin >> n >> q;
int ans[n+1][n+1] = {};
string s; cin >> s; int siz = s.size();
int arr[siz];
for(int i = 0; i < s.size(); i++) {
arr[i] = s[i]-'0';
}
while(q--) {
string ty; cin >> ty;
for(int i = 0; i < n; i++) {
for(int j = i+1; j < n+1; j++) {
bool ok = true;
for(int z = i; z <= j-1; z++) {
if(arr[z] == 0) {
ok = false;
break;
}
}
if(ok) {
ans[i][j]++;
}
}
}
if(ty == "toggle") {
int x; cin >> x;
arr[x-1] = abs(1-arr[x-1]);
}
else {
int a, b; cin >> a >> b;
cout << ans[a-1][b-1] << endl;
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |