結果

問題 No.1867 Partitions and Inversions
ユーザー 👑 NachiaNachia
提出日時 2022-03-04 23:40:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,765 ms / 5,000 ms
コード長 865 bytes
コンパイル時間 987 ms
コンパイル使用メモリ 84,096 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-07-18 22:04:33
合計ジャッジ時間 102,470 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2,595 ms
30,976 KB
testcase_03 AC 2,518 ms
31,104 KB
testcase_04 AC 2,561 ms
31,104 KB
testcase_05 AC 2,594 ms
31,104 KB
testcase_06 AC 2,596 ms
30,976 KB
testcase_07 AC 2,615 ms
31,104 KB
testcase_08 AC 2,461 ms
30,848 KB
testcase_09 AC 2,556 ms
31,104 KB
testcase_10 AC 2,636 ms
31,104 KB
testcase_11 AC 2,612 ms
31,232 KB
testcase_12 AC 2,651 ms
31,104 KB
testcase_13 AC 2,572 ms
30,976 KB
testcase_14 AC 2,546 ms
31,104 KB
testcase_15 AC 2,603 ms
30,976 KB
testcase_16 AC 2,589 ms
31,104 KB
testcase_17 AC 2,616 ms
30,976 KB
testcase_18 AC 2,589 ms
31,104 KB
testcase_19 AC 2,589 ms
30,848 KB
testcase_20 AC 2,635 ms
30,976 KB
testcase_21 AC 2,611 ms
30,848 KB
testcase_22 AC 2,620 ms
30,976 KB
testcase_23 AC 2,631 ms
31,104 KB
testcase_24 AC 2,658 ms
31,104 KB
testcase_25 AC 2,696 ms
30,976 KB
testcase_26 AC 2,631 ms
31,104 KB
testcase_27 AC 2,765 ms
31,104 KB
testcase_28 AC 2,646 ms
30,976 KB
testcase_29 AC 2,680 ms
31,104 KB
testcase_30 AC 2,604 ms
30,976 KB
testcase_31 AC 2,665 ms
31,104 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 16 ms
6,016 KB
testcase_39 AC 16 ms
6,144 KB
testcase_40 AC 15 ms
6,016 KB
testcase_41 AC 15 ms
6,144 KB
testcase_42 AC 15 ms
6,144 KB
testcase_43 AC 789 ms
19,328 KB
testcase_44 AC 804 ms
19,456 KB
testcase_45 AC 799 ms
19,456 KB
testcase_46 AC 788 ms
19,328 KB
testcase_47 AC 804 ms
19,328 KB
testcase_48 AC 810 ms
19,456 KB
testcase_49 AC 795 ms
19,328 KB
testcase_50 AC 801 ms
19,328 KB
testcase_51 AC 774 ms
19,328 KB
testcase_52 AC 758 ms
19,328 KB
testcase_53 AC 770 ms
19,328 KB
testcase_54 AC 789 ms
19,200 KB
testcase_55 AC 921 ms
19,200 KB
testcase_56 AC 753 ms
19,200 KB
testcase_57 AC 757 ms
19,328 KB
testcase_58 AC 775 ms
19,328 KB
testcase_59 AC 790 ms
19,456 KB
testcase_60 AC 801 ms
19,328 KB
testcase_61 AC 776 ms
19,328 KB
testcase_62 AC 773 ms
19,328 KB
testcase_63 AC 2,667 ms
31,104 KB
testcase_64 AC 2 ms
5,376 KB
testcase_65 AC 2 ms
5,376 KB
testcase_66 AC 2 ms
5,376 KB
testcase_67 AC 2,729 ms
30,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using i64 = long long;
#define rep(i,n) for(int i=0; i<(int)(n); i++)


int N;
int P[3000];
int I[3001][3001];
int dp[3001] = {};
int ans[3001] = {};

int main(){
    int N; cin >> N;
    rep(i,N){ cin >> P[i]; P[i]--; }
    rep(i,N) rep(j,i) if(P[j] > P[i]) I[j][i+1]++;
    for(int l=N; l>=0; l--) for(int r=l+1; r<=N; r++) I[l][r] += I[l+1][r];
    for(int l=N; l>=0; l--) for(int r=l+1; r<=N; r++) I[l][r] += I[l][r-1];

    for(int k=0; k<N; k++){
        for(int l=0; l+k<N; l++){
            dp[l] = 0;
            for(int r=l+1; r+k<=N; r++){
                dp[l] = max(dp[l], dp[r] + I[l][r]);
            }
        }
        cout << (I[0][N] - dp[0]) << '\n';
    }

    return 0;
}
0