이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define sz(s) (int)s.size()
#define ff first
#define ss second
int f(int a, int b, int x, int y){
if(a > x) swap(a,x), swap(b,y);
if(b < x) return 0;
if(b <= y) return (b-x+1);
return (y-x+1);
}
int main(){
ios::sync_with_stdio(false); cin.tie(nullptr);
int n, t, ans = 0, ind = 0;
cin >> n >> t;
vector <pair<int,int>> v;
vector <int> vis(n+1,0);
for(int i = 1; i <= n; i++){
int t1;
cin >> t1;
if(t1 == 1){
int a, b;
cin >> a >> b;
ind++;
a = (a ^ (t * ans));
b = (b ^ (t * ans));
if(a > b) swap(a,b);
v.push_back({a,b});
}
if(t1 == 2){
int id, in = 0;
cin >> id;
vis[--id] = true;
}
if(t1 == 3){
int a, b, k;
cin >> a >> b >> k;
a = (a ^ (t * ans));
b = (b ^ (t * ans));
if(a > b) swap(a,b);
ans = 0;
for(int j = 0; j < sz(v); j++){
if(vis[j]) continue;
ans += ((min(b,v[j].ss) - max(a,v[j].ff)) >= k-1);
}
cout << ans << '\n';
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
segments.cpp: In function 'int main()':
segments.cpp:36:12: warning: unused variable 'in' [-Wunused-variable]
36 | int id, in = 0;
| ^~
# | 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... |