結果

問題 No.1867 Partitions and Inversions
ユーザー 👑 NachiaNachia
提出日時 2022-03-04 23:36:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,486 ms / 5,000 ms
コード長 748 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 75,892 KB
実行使用メモリ 38,720 KB
最終ジャッジ日時 2024-07-18 22:02:10
合計ジャッジ時間 153,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3,722 ms
31,104 KB
testcase_03 AC 3,803 ms
31,104 KB
testcase_04 AC 3,777 ms
30,976 KB
testcase_05 AC 3,860 ms
38,180 KB
testcase_06 AC 3,932 ms
31,104 KB
testcase_07 AC 3,846 ms
30,848 KB
testcase_08 AC 3,727 ms
31,104 KB
testcase_09 AC 3,734 ms
30,976 KB
testcase_10 AC 3,670 ms
30,976 KB
testcase_11 AC 3,769 ms
30,976 KB
testcase_12 AC 3,761 ms
31,104 KB
testcase_13 AC 4,169 ms
30,976 KB
testcase_14 AC 3,813 ms
38,244 KB
testcase_15 AC 3,796 ms
30,976 KB
testcase_16 AC 3,781 ms
30,976 KB
testcase_17 AC 3,871 ms
37,568 KB
testcase_18 AC 3,806 ms
30,976 KB
testcase_19 AC 3,714 ms
30,848 KB
testcase_20 AC 3,780 ms
38,696 KB
testcase_21 AC 4,171 ms
38,720 KB
testcase_22 AC 4,104 ms
30,976 KB
testcase_23 AC 4,132 ms
30,976 KB
testcase_24 AC 4,239 ms
31,104 KB
testcase_25 AC 4,174 ms
31,104 KB
testcase_26 AC 4,368 ms
31,104 KB
testcase_27 AC 4,432 ms
30,848 KB
testcase_28 AC 4,116 ms
31,104 KB
testcase_29 AC 4,278 ms
30,848 KB
testcase_30 AC 4,016 ms
30,976 KB
testcase_31 AC 4,210 ms
37,912 KB
testcase_32 AC 1 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 21 ms
6,144 KB
testcase_39 AC 23 ms
6,016 KB
testcase_40 AC 24 ms
6,144 KB
testcase_41 AC 22 ms
6,016 KB
testcase_42 AC 22 ms
6,144 KB
testcase_43 AC 1,196 ms
19,328 KB
testcase_44 AC 1,203 ms
19,456 KB
testcase_45 AC 1,244 ms
19,328 KB
testcase_46 AC 1,239 ms
19,328 KB
testcase_47 AC 1,218 ms
19,200 KB
testcase_48 AC 1,219 ms
19,328 KB
testcase_49 AC 1,211 ms
19,328 KB
testcase_50 AC 1,189 ms
19,456 KB
testcase_51 AC 1,196 ms
19,328 KB
testcase_52 AC 1,211 ms
19,328 KB
testcase_53 AC 1,207 ms
19,328 KB
testcase_54 AC 1,237 ms
19,200 KB
testcase_55 AC 1,228 ms
19,200 KB
testcase_56 AC 1,228 ms
19,200 KB
testcase_57 AC 1,234 ms
19,200 KB
testcase_58 AC 1,194 ms
19,328 KB
testcase_59 AC 1,222 ms
19,456 KB
testcase_60 AC 1,234 ms
19,456 KB
testcase_61 AC 1,230 ms
19,328 KB
testcase_62 AC 1,216 ms
19,328 KB
testcase_63 AC 4,082 ms
30,976 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 4,486 ms
30,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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]++;
    rep(r,N+1) for(int l=r-1; l>=0; l--) I[l][r] += I[l+1][r];
    rep(r,N+1) for(int l=r-1; l>=0; l--) 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