# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
479858 |
2021-10-13T15:38:27 Z |
aris12345678 |
Deda (COCI17_deda) |
C++14 |
|
920 ms |
4628 KB |
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define X first
#define Y second
const int mxN = 200005;
const int inf = 1e9+5;
int st[4*mxN];
void update(int p, int l, int r, int i, int v) {
if(l == r)
st[p] = v;
else {
int md = (l+r)/2;
if(i <= md)
update(2*p, l, md, i, v);
else
update(2*p+1, md+1, r, i, v);
st[p] = min(st[2*p], st[2*p+1]);
}
}
int Min(int p, int l, int r, int i, int j) {
if(i > r || l > j)
return inf;
if(i <= l && r <= j)
return st[p];
int md = (l+r)/2;
return min(Min(2*p, l, md, i, j), Min(2*p+1, md+1, r, i, j));
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n, q;
scanf("%d %d\n", &n, &q);
fill(st, st+4*mxN, inf);
while(q--) {
char type;
int l, r;
cin >> type >> l >> r;
if(type == 'M')
update(1, 1, n, r, l);
else {
int st = r, en = n, md, ans = -1;
while(st <= en) {
md = (st+en)/2;
if(Min(1, 1, n, r, md) <= l)
ans = md, en = md-1;
else
st = md+1;
}
printf("%d\n", ans);
}
}
return 0;
}
Compilation message
deda.cpp: In function 'int main()':
deda.cpp:39:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
39 | scanf("%d %d\n", &n, &q);
| ~~~~~^~~~~~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
3396 KB |
Output isn't correct |
2 |
Incorrect |
2 ms |
3404 KB |
Output isn't correct |
3 |
Incorrect |
9 ms |
3404 KB |
Output isn't correct |
4 |
Incorrect |
270 ms |
4012 KB |
Output isn't correct |
5 |
Incorrect |
663 ms |
4344 KB |
Output isn't correct |
6 |
Incorrect |
788 ms |
4528 KB |
Output isn't correct |
7 |
Incorrect |
920 ms |
4628 KB |
Output isn't correct |