#pragma GCC optimize("fast-math,Ofast,inline,no-stack-protector,profile-values,data-sections,-ffast-math,-fgcse")
#pragma GCC optimize("branch-target-load-optimize,branch-target-load-optimize2,btr-bb-exclusive,-fpeephole2")
#include <bits/stdc++.h>
#define ll long long
#define ull unsigned ll
#define vi vector<ll>
#define vvi vector<vi>
#define all(x) x.begin(), x.end()
#define pb push_back
#define mp make_pair
#define ld long double
#define pii pair<ll, ll>
#define mt make_tuple
#define mn(a, b) a = min(a, b)
#define mx(a, b) a = max(a, b)
using namespace std;
const ll INF = (ll)2e9;
const ll inf = (ll)2e18;
const ld eps = (ld)1e-8;
const ll mod = (ll)10007;
const ll MAXN = (ll)1e4 + 1;
const ll MAXC = (ll)1e6 + 1;
const ll MAXE = (ll)1000;
const ll MAXLOG = 21;
const ll maxlen = (ll)1e5;
const ll asci = (ll)256;
const ll block = 480;
const ld PI = acos(-1);
const ld e = 2.7182818284;
/*#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
typedef tree<
pii,
null_type,
less<pii>,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;*/
template <class T>
istream& operator >>(istream &in, vector<T> &arr){
for (T &cnt : arr) {
in >> cnt;
}
return in;
};
ll k;
int used[50], cnt[50];
struct nums{
vector<pii> p, s;
ll ans = INF;
nums() {}
nums(ll pos, ll x) {
p.push_back(mp(x, pos));
s.push_back(mp(x, pos));
}
nums(vector<pii> p, vector<pii> s, ll ans): p(p), s(s), ans(ans) {}
};
nums merge(nums a, nums b) {
vector<pii> p = a.p;
memset(used, 0, sizeof used);
for (ll i = 0; i < p.size(); ++i) {
used[p[i].first] = 1;
}
for (ll i = 0; i < b.p.size(); ++i) {
if (!used[b.p[i].first]) p.push_back(b.p[i]);
used[b.p[i].first] = 1;
}
vector<pii> s = b.s;
memset(used, 0, sizeof used);
for (ll i = 0; i < s.size(); ++i) {
used[s[i].first] = 1;
}
for (ll i = 0; i < a.s.size(); ++i) {
if (!used[a.s[i].first]) s.push_back(a.s[i]);
used[a.s[i].first] = 1;
}
memset(cnt, 0, sizeof cnt);
ll ost = k;
ll ans = min(a.ans, b.ans);
for (ll i = 0; i < b.p.size(); ++i) cnt[b.p[i].first]++, ost--;
ll l = 0, r = b.p.size() - 1;
for (; l < a.s.size() && r > -1; ++l) {
cnt[a.s[l].first]++;
if (cnt[a.s[l].first] == 1) ost--;
while (r > -1 && cnt[b.p[r].first] > 1) {
cnt[b.p[r].first]--; r--;
}
if (!ost) ans = mn(ans, b.p[max(r, 0LL)].second - a.s[l].second + 1);
}
return nums(p, s, ans);
}
struct stree{
nums t[400000];
void build(ll v, ll tl, ll tr, vi &a) {
if (tl + 1 == tr) {
t[v] = nums(tl, a[tl]);
return;
}
ll tm = (tl + tr) / 2;
build(2 * v, tl, tm, a);
build(2 * v + 1, tm, tr, a);
t[v] = merge(t[2 * v], t[2 * v + 1]);
}
void upd(ll v, ll tl, ll tr, ll pos, ll x) {
if (tl + 1 == tr) {
t[v] = nums(pos, x);
return;
}
ll tm = (tl + tr) / 2;
if (pos < tm) upd(2 * v, tl, tm, pos, x);
else upd(2 * v + 1, tm, tr, pos, x);
t[v] = merge(t[2 * v], t[2 * v + 1]);
}
ll ans() {
return t[1].ans;
}
};
stree t;
void solve() {
ll n, q; cin >> n >> k >> q;
vi a(n); cin >> a;
for (ll i = 0; i < n; ++i) a[i]--;
t.build(1, 0, n, a);
while (q--) {
ll type; cin >> type;
if (type == 1) {
ll p, v; cin >> p >> v;
p--, v--;
t.upd(1, 0, n, p, v);
} else {
ll otv = t.ans();
if (otv == INF) cout << "-1\n";
else cout << otv << "\n";
}
}
}
signed main() {
srand(time(0));
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#else
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
#endif
cout.precision(30);
solve();
return 0;
}
Compilation message
nekameleoni.cpp:1:113: warning: bad option '-fprofile-values' to pragma 'optimize' [-Wpragmas]
#pragma GCC optimize("fast-math,Ofast,inline,no-stack-protector,profile-values,data-sections,-ffast-math,-fgcse")
^
nekameleoni.cpp:1:113: warning: bad option '-fdata-sections' to pragma 'optimize' [-Wpragmas]
nekameleoni.cpp:46:49: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
istream& operator >>(istream &in, vector<T> &arr){
^
nekameleoni.cpp:46:49: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:60:10: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
nums() {}
^
nekameleoni.cpp:60:10: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:61:22: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
nums(ll pos, ll x) {
^
nekameleoni.cpp:61:22: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:65:46: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
nums(vector<pii> p, vector<pii> s, ll ans): p(p), s(s), ans(ans) {}
^
nekameleoni.cpp:65:46: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:68:26: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
nums merge(nums a, nums b) {
^
nekameleoni.cpp:68:26: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp: In function 'nums merge(nums, nums)':
nekameleoni.cpp:71:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (ll i = 0; i < p.size(); ++i) {
~~^~~~~~~~~~
nekameleoni.cpp:74:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (ll i = 0; i < b.p.size(); ++i) {
~~^~~~~~~~~~~~
nekameleoni.cpp:80:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (ll i = 0; i < s.size(); ++i) {
~~^~~~~~~~~~
nekameleoni.cpp:83:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (ll i = 0; i < a.s.size(); ++i) {
~~^~~~~~~~~~~~
nekameleoni.cpp:90:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (ll i = 0; i < b.p.size(); ++i) cnt[b.p[i].first]++, ost--;
~~^~~~~~~~~~~~
nekameleoni.cpp:92:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (; l < a.s.size() && r > -1; ++l) {
~~^~~~~~~~~~~~
nekameleoni.cpp:98:23: warning: operation on 'ans' may be undefined [-Wsequence-point]
if (!ost) ans = mn(ans, b.p[max(r, 0LL)].second - a.s[l].second + 1);
^
nekameleoni.cpp: At global scope:
nekameleoni.cpp:106:41: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
void build(ll v, ll tl, ll tr, vi &a) {
^
nekameleoni.cpp:106:41: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:117:46: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
void upd(ll v, ll tl, ll tr, ll pos, ll x) {
^
nekameleoni.cpp:117:46: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:128:12: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
ll ans() {
^
nekameleoni.cpp:128:12: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:135:12: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
void solve() {
^
nekameleoni.cpp:135:12: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp:154:13: warning: bad option '-fprofile-values' to attribute 'optimize' [-Wattributes]
signed main() {
^
nekameleoni.cpp:154:13: warning: bad option '-fdata-sections' to attribute 'optimize' [-Wattributes]
nekameleoni.cpp: In constructor 'nums::nums()':
nekameleoni.cpp:60:13: warning: branch target register load optimization is not intended to be run twice
nums() {}
^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
50 ms |
23160 KB |
Output is correct |
2 |
Correct |
48 ms |
22912 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
23424 KB |
Output is correct |
2 |
Correct |
92 ms |
23544 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
104 ms |
23872 KB |
Output is correct |
2 |
Correct |
125 ms |
23808 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
896 ms |
28664 KB |
Output is correct |
2 |
Correct |
2942 ms |
42752 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1380 ms |
38724 KB |
Output is correct |
2 |
Execution timed out |
3073 ms |
49432 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1894 ms |
35064 KB |
Output is correct |
2 |
Execution timed out |
3074 ms |
45816 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2389 ms |
42364 KB |
Output is correct |
2 |
Execution timed out |
3075 ms |
46968 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2220 ms |
40844 KB |
Output is correct |
2 |
Execution timed out |
3079 ms |
48392 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2794 ms |
52600 KB |
Output is correct |
2 |
Execution timed out |
3077 ms |
51052 KB |
Time limit exceeded |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2761 ms |
52288 KB |
Output is correct |
2 |
Execution timed out |
3073 ms |
50988 KB |
Time limit exceeded |