답안 #165130

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
165130 2019-11-25T08:52:49 Z Atill83 학생 (COCI14_studentsko) C++14
100 / 100
114 ms 760 KB
#include <bits/stdc++.h>
#define ff first
#define ss second
#define endl '\n'
using namespace std;
const long long INF = (long long) 1e18;
const int mod = (int) 1e9+7;
const int MAXN = (int) 5e3+5;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
ll n, k;
int a[MAXN];
int b[MAXN];
map<int, int> blk;
int dp[MAXN];




int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);cout.tie(nullptr);

    #ifdef Local
        freopen("../IO/int.txt","r",stdin);
        freopen("../IO/out.txt","w",stdout);
    #endif

    cin>>n>>k;

    for(int i = 0; i < n; i++){
        cin>>a[i];
        b[i] = a[i];
    }
    
    sort(b, b + n);
    for(int i = 0; i < n; i++){
        blk[b[i]] = i / k + 1;
    }
    for(int i = 0; i < n; i++){
        a[i] = blk[a[i]];
    }
    int ans = 0;
    for(int i = 0; i < n; i++){
        int mx = 0;
        for(int j = 0; j < i; j++){
            if(a[j] <= a[i])
                mx = max(mx, dp[j]);
        }
        dp[i] = mx + 1;
        ans = max(ans, dp[i]);
    }
    cout<<n - ans<<endl;
    #ifdef Local
        cout<<endl<<fixed<<setprecision(2)<<1000.0 * clock() / CLOCKS_PER_SEC<< " milliseconds ";
    #endif
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 372 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 114 ms 636 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 51 ms 676 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 40 ms 632 KB Output is correct
2 Correct 42 ms 648 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 46 ms 692 KB Output is correct
2 Correct 50 ms 760 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 50 ms 672 KB Output is correct
2 Correct 30 ms 632 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 50 ms 604 KB Output is correct
2 Correct 73 ms 760 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 55 ms 760 KB Output is correct
2 Correct 54 ms 732 KB Output is correct