# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
495747 | Nalrimet | Segments (IZhO18_segments) | C++17 | 5095 ms | 2504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5;
const int inf = 1000000000;
#define int long long
#define F first
#define S second
#define pb push_back
int n, t, a, b, lastans, k, id;
bool used[N];
vector<pair<int, int>> v;
main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> n >> t;
int type;
while(n--){
cin >> type;
if(type == 1){
cin >> a >> b;
a = a ^ (t * lastans);
b = b ^ (t * lastans);
if(a > b) swap(a, b);
// cout << a << ' ' << b << '\n';
used[v.size()] = 1;
v.pb({a, b});
}
else if(type == 2){
cin >> id;
// cout << id - 1 << '\n';;
used[id - 1] = 0;
}
else{
cin >> a >> b >> k;
a = a ^ (t * lastans);
b = b ^ (t * lastans);
if(a > b) swap(a, b);
// cout << a << ' ' << b << '\n';
lastans = 0;
for(int i = 0; i < v.size(); ++i){
if(used[i]){
// cout << v[i].F << ' ' << v[i].S << '\n';
if(a <= v[i].F && v[i].S <= b){
if(v[i].S - v[i].F + 1 >= k) lastans++;
}
else if(a <= v[i].F && v[i].F <= b){
if(b - v[i].F + 1 >= k) lastans++;
}
else if(a <= v[i].S && v[i].S <= b){
if(v[i].S - a + 1 >= k) lastans++;
}
else if(v[i].F <= a && b <= v[i].S){
if(b - a + 1 >= k) lastans++;
}
}
}
// l x y r
// l x r y
// x l y r
// x l r y
cout << lastans << '\n';
}
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |