# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
893654 | vjudge1 | Segments (IZhO18_segments) | C++17 | 5072 ms | 10064 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// 以上帝的名义
// 候选硕士
#include <bits/stdc++.h>
#ifdef local
#include "algo/debug.h"
#else
#define dbg(x...) 0
#endif
using namespace std ;
using ll = long long ;
using ld = long double ;
int32_t main() {
int n, t ;
scanf("%d%d", &n, &t) ;
int last = 0 ;
map<pair<int,int>,int> cnt ;
map<int,pair<int,int>> ind ;
int idx = 0 ;
for (int i = 0 ; i < n ; i++ ){
int type ; scanf("%d", &type) ;
if (type == 1) {
int a, b ; scanf("%d%d", &a, &b) ;
int l = (a ^ (last * t)) ;
int r = (b ^ (last * t)) ;
if (l > r) swap(l, r) ;
cnt[{l,r}]++ ; idx++ ;
ind[idx] = {l, r} ;
// dbg(type, l, r) ;
} else if (type == 2) {
int j ; cin >> j ;
auto c = ind[j] ;
cnt[c]-- ;
if (cnt[c] == 0) cnt.erase(c) ;
} else {
int a, b, k ;scanf("%d%d%d", &a, &b, &k) ;
int l = (a ^ (t * last)) ;
int r = (b ^ (t * last)) ;
if (l > r) swap(l, r) ;
int ans = 0 ;
for (auto [c, p] : cnt) {
auto [L, R] = c ;
L = max(L, l) , R = min(R , r) ;
if (R - L + 1 >= k) {
ans++ ;
}
}
// dbg(type, l, r) ;
printf("%d\n", ans) ;
last = ans ;
}
}
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... |