#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll MAXN=400010;
const ll inf=(1e18);
map<pair<ll, ll>, ll> mp;
int main(){
ll n, k, m, i, j;
cin>>n>>k>>m;
vector<ll> v(n+1, k+10);
for(ll i=1; i<=n; i++){
cin>>v[i];
}
for(i=1; i<=n; i++){
for(j=1; j<=n; j++){
if(v[i]==v[j]){
mp[{v[i], j}]=mp[{v[i], j-1}]+1;
}
else {
mp[{v[i], j}]=mp[{v[i], j-1}];
}
}
}
while(m--){
ll test;
cin>>test;
if(test==1){
ll p, val;
cin>>p>>val;
for(i=p; i<=n; i++){
mp[{v[p], i}]--;
}
v[p]=val;
for(i=p; i<=n; i++){
mp[{v[p], i}]++;
}
}
else {
ll l=0, r=0, cavab=n+100;
while(r<=n){
bool f=true;
for(ll i=1; i<=k; i++){
if(mp[{i, r}]-mp[{i, l}]==0){
f=false;
}
}
if(f){
cavab=min(cavab, r-l);
l++;
}
else {
r++;
}
}
if(cavab==n+100){
cout<<-1<<endl;
}
else {
cout<<cavab<<endl;
}
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3074 ms |
3508 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3080 ms |
8908 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3069 ms |
15916 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3089 ms |
64344 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3091 ms |
171224 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3087 ms |
130340 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3101 ms |
205652 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3080 ms |
185940 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3077 ms |
264056 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3071 ms |
264424 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |