# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
872022 | vjudge1 | Deda (COCI17_deda) | C++17 | 143 ms | 6100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimze("Ofast")
typedef long long ll;
typedef pair<int, int> pii;
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define len(x) (int) x.size()
#define pb push_back
mt19937 rnd(time(0));
struct query {
char type;
int a, b;
};
const int N = 2e5 + 7, SQ = 460, BLOCK = N / SQ + 7;
int n, q, box[BLOCK], c[N];
map<int, int> mp;
vector<query> qu;
vector<int> vec;
void read_input() {
cin >> n >> q;
for (int i = 0; i < q; i++) {
query t;
cin >> t.type >> t.a >> t.b;
t.b--;
vec.pb(t.a);
qu.pb(t);
}
}
void prepare() {
sort(all(vec));
vec.resize(unique(all(vec)) - vec.begin());
for (int i = 0; i < len(vec); i++)
mp[vec[i]] = i;
}
void solve() {
for (int i = 0; i < BLOCK; i++)
box[i] = INT_MAX;
for (int i = 0; i < N; i++)
c[i] = INT_MAX;
for (int i = 0; i < q; i++) {
char type = qu[i].type;
int a = qu[i].a, b = qu[i].b;
if (type == 'M') {
box[b / SQ] = min(box[b / SQ], a);
c[b] = a;
}
else {
int ans = INT_MAX;
int l = b, r = n;
for (; l < r; ) {
if (l % SQ || l + SQ > r) {
if (c[l] <= a) {
ans = l;
break;
}
else
l++;
}
else {
if (box[l / SQ] <= a) {
for (int j = l; j < l + SQ; j++)
if (c[j] <= a) {
ans = j;
break;
}
break;
}
l += SQ;
}
}
cout << (ans == INT_MAX? -1: ans + 1) << '\n';
}
}
}
int32_t main() {
ios:: sync_with_stdio(0), cin.tie(0), cout.tie(0);
read_input(), solve();
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |