# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
477518 | hjc4vr | 학생 (COCI14_studentsko) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <vector>
#include <map>
#define int long long
using namespace std;
int ft[5005];
int query(int x){
int ans=0;
for (;x!=0;x-=x&(-x)) ans = max(ft[x],ans);
return ans;
}
void insert(int x,int val){
for (;x<=5004;x+=x&(-x)) ft[x] = val;
}
bool s(pair<int,int> &a,pair<int,int> &b){
if (a.first < b.first){
return true;
}
else if (a.first == b.first){
return a.second < b.second;
}else{
return false;
}
}
int32_t main(){
ios_base::sync_with_stdio(0);cin.tie(0);
int n,k;cin>>n>>k;
pair<int,int> arr[n+1];
for (int i=1;i<=n;++i) {
int a;
cin >> a;
arr[i] = make_pair(a,i);
}
sort(arr+1,arr+n+1);
int t=1,cnt=k;
pair<int,int> v[n+1];
for (int i=1;i<=n;++i){
v[arr[i].second] = make_pair(t,arr[i].second);
cnt--;
if (cnt==0){
t+=1;
cnt=k;
}
}
sort(v+1,v+n+1,s);
for (int i=1;i<=n;++i){
int maxi = query(v[i].second);
insert(v[i].second,maxi+1);
}
cout << n - query(n);
}