# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1099407 | Zflop | Infinite Race (EGOI24_infiniterace2) | C++14 | 256 ms | 20424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define all(x) x.begin(),x.end()
#define sor(x) sort(all(x))
#define pi pair<int,int>
#define vi vector<int>
#define pb push_back
#define int ll
int N,Q;
void solve() {
cin >> N >> Q;
set<int>spate,fata;
for (int i = 1; i < N;++i)
fata.insert(i);
int ans = 0;
while(Q--) {
int x; cin >> x;
if(x < 0) {
x = -x;
if(fata.find(x) == fata.end()){
fata.insert(x);
spate.erase(x);
}
} else {
if(fata.find(x) != fata.end()) {
fata.erase(x);
spate.insert(x);
} else {
++ans;
for (auto& z:spate)
if(x != z)
fata.insert(z);
spate.clear();
spate.insert(x);
}
}
}
cout << ans;
}
main(){
solve();
}
컴파일 시 표준 에러 (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... |