답안 #989759

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
989759 2024-05-28T18:06:57 Z LOLOLO 학생 (COCI14_studentsko) C++17
100 / 100
57 ms 600 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
 
#define           f     first
#define           s     second
#define           pb    push_back
#define           ep    emplace
#define           eb    emplace_back
#define           lb    lower_bound
#define           ub    upper_bound
#define       all(x)    x.begin(), x.end()
#define      rall(x)    x.rbegin(), x.rend()
#define   uniquev(v)    sort(all(v)), (v).resize(unique(all(v)) - (v).begin())
#define     mem(f,x)    memset(f , x , sizeof(f))
#define        sz(x)    (ll)(x).size()
#define  __lcm(a, b)    (1ll * ((a) / __gcd((a), (b))) * (b))
#define          mxx    *max_element
#define          mnn    *min_element
#define    cntbit(x)    __builtin_popcountll(x)
#define       len(x)    (int)(x.length())
 
const int N = 5e3 + 10;
int rk[N], val[N], dp[N];

ll solve() {
    int n, k;
    cin >> n >> k;

    for (int i = 1; i <= n; i++) {
        cin >> val[i];
    }

    for (int i = 1; i <= n; i++) {
        for (int j = 1; j <= n; j++) {
            rk[i] += (val[i] > val[j]);
        }
    }

    int mx = 0;
    for (int i = 1; i <= n; i++) {
        dp[i] = 1;
        for (int j = 1; j < i; j++) {
            if (rk[i] / k >= rk[j] / k) {
                dp[i] = max(dp[i], dp[j] + 1);
            }
        }

        mx = max(mx, dp[i]);
    }

    return n - mx;
}

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

    int t = 1;
    //cin >> t;

    while (t--) {
        cout << solve() << '\n';
    }

    return 0;
} 

/*
5 3
2 2 2
2 2 1
1 1 1
2 1 2
1 2 1
*/
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 348 KB Output is correct
2 Correct 0 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 52 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 56 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 47 ms 348 KB Output is correct
2 Correct 46 ms 536 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 51 ms 344 KB Output is correct
2 Correct 57 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 57 ms 348 KB Output is correct
2 Correct 34 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 52 ms 500 KB Output is correct
2 Correct 54 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 56 ms 496 KB Output is correct
2 Correct 56 ms 600 KB Output is correct