#include <bits/stdc++.h>
#define ll long long
#define all(x) x.begin(), x.end()
#define Neco "Simple game"
#define resp(x) sort(all(x)), x.resize(unique(all(x)) - x.begin())
#define getbit(x,i) ((x >> i)&1)
#define _left id * 2, l, mid
#define _right id * 2 + 1, mid + 1, r
#define cntbit(x) __builtin_popcountll(x)
#define fi(i, a, b) for(int i = a; i <= b; i++)
#define fid(i, a, b) for(int i = a; i >= b; i--)
#define maxn (int) 1e6 + 7
using namespace std;
const ll mod = 1e9 + 7; //972663749
const ll base = 911382323;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll GetRandom(ll l, ll r)
{
return uniform_int_distribution<ll> (l, r)(rng);
}
int n, q;
int a[maxn];
struct BIT {
int bit[maxn];
void update(int l, int r, int val) {
if(l > r) swap(l, r);
for(; l < maxn; l += (l & -l)) bit[l] += val;
for(++r; r < maxn; r += (r & -r)) bit[r] -= val;
}
int get(int x, int ans = 0) {
for(; x > 0; x -= (x & -x)) ans += bit[x];
return ans;
}
} Bit;
void solve()
{
cin >> n >> q;
fi(i, 1, n) {
cin >> a[i];
if(i > 1) Bit.update(a[i - 1], a[i], 1);
}
fi(i, 1, q) {
int type, x, y;
cin >> type >> x;
if(type == 2) cout << Bit.get(x) << '\n';
else {
cin >> y;
if(x > 1) Bit.update(a[x - 1], a[x], -1);
if(x < n) Bit.update(a[x + 1], a[x], -1);
a[x] = y;
if(x > 1) Bit.update(a[x - 1], a[x], 1);
if(x < n) Bit.update(a[x + 1], a[x], 1);
}
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
if(fopen(Neco".inp", "r")) {
freopen(Neco".inp", "r", stdin);
freopen(Neco".out", "w", stdout);
}
int nTest = 1;
// cin >> nTest;
while(nTest--)
{
solve();
}
return 0;
}
Compilation message
game.cpp: In function 'int main()':
game.cpp:82:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
82 | freopen(Neco".inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
game.cpp:83:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
83 | freopen(Neco".out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4444 KB |
Output is correct |
2 |
Correct |
2 ms |
4700 KB |
Output is correct |
3 |
Correct |
1 ms |
4700 KB |
Output is correct |
4 |
Correct |
1 ms |
4856 KB |
Output is correct |
5 |
Correct |
1 ms |
4700 KB |
Output is correct |
6 |
Correct |
1 ms |
4580 KB |
Output is correct |
7 |
Correct |
1 ms |
4696 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4444 KB |
Output is correct |
2 |
Correct |
2 ms |
4700 KB |
Output is correct |
3 |
Correct |
1 ms |
4700 KB |
Output is correct |
4 |
Correct |
1 ms |
4856 KB |
Output is correct |
5 |
Correct |
1 ms |
4700 KB |
Output is correct |
6 |
Correct |
1 ms |
4580 KB |
Output is correct |
7 |
Correct |
1 ms |
4696 KB |
Output is correct |
8 |
Correct |
26 ms |
7512 KB |
Output is correct |
9 |
Correct |
30 ms |
9048 KB |
Output is correct |
10 |
Correct |
38 ms |
9224 KB |
Output is correct |
11 |
Correct |
25 ms |
7512 KB |
Output is correct |
12 |
Correct |
29 ms |
8532 KB |
Output is correct |
13 |
Correct |
28 ms |
8668 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4444 KB |
Output is correct |
2 |
Correct |
2 ms |
4700 KB |
Output is correct |
3 |
Correct |
1 ms |
4700 KB |
Output is correct |
4 |
Correct |
1 ms |
4856 KB |
Output is correct |
5 |
Correct |
1 ms |
4700 KB |
Output is correct |
6 |
Correct |
1 ms |
4580 KB |
Output is correct |
7 |
Correct |
1 ms |
4696 KB |
Output is correct |
8 |
Correct |
26 ms |
7512 KB |
Output is correct |
9 |
Correct |
30 ms |
9048 KB |
Output is correct |
10 |
Correct |
38 ms |
9224 KB |
Output is correct |
11 |
Correct |
25 ms |
7512 KB |
Output is correct |
12 |
Correct |
29 ms |
8532 KB |
Output is correct |
13 |
Correct |
28 ms |
8668 KB |
Output is correct |
14 |
Correct |
40 ms |
8944 KB |
Output is correct |
15 |
Correct |
41 ms |
8788 KB |
Output is correct |
16 |
Correct |
40 ms |
8936 KB |
Output is correct |
17 |
Correct |
39 ms |
8784 KB |
Output is correct |
18 |
Correct |
40 ms |
8816 KB |
Output is correct |