結果

問題 No.1867 Partitions and Inversions
ユーザー SSRSSSRS
提出日時 2022-03-04 23:51:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,291 ms / 5,000 ms
コード長 897 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 205,432 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-07-18 22:37:24
合計ジャッジ時間 158,638 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 4,104 ms
38,784 KB
testcase_03 AC 4,018 ms
38,784 KB
testcase_04 AC 4,032 ms
38,784 KB
testcase_05 AC 4,060 ms
38,656 KB
testcase_06 AC 4,067 ms
38,784 KB
testcase_07 AC 4,062 ms
38,784 KB
testcase_08 AC 4,071 ms
38,656 KB
testcase_09 AC 4,077 ms
38,784 KB
testcase_10 AC 4,096 ms
38,784 KB
testcase_11 AC 4,071 ms
38,784 KB
testcase_12 AC 4,066 ms
38,784 KB
testcase_13 AC 4,159 ms
38,784 KB
testcase_14 AC 4,035 ms
38,912 KB
testcase_15 AC 4,088 ms
38,784 KB
testcase_16 AC 4,079 ms
38,784 KB
testcase_17 AC 4,115 ms
38,784 KB
testcase_18 AC 4,034 ms
38,784 KB
testcase_19 AC 4,048 ms
38,784 KB
testcase_20 AC 4,101 ms
38,784 KB
testcase_21 AC 4,068 ms
38,784 KB
testcase_22 AC 4,032 ms
38,784 KB
testcase_23 AC 4,028 ms
38,656 KB
testcase_24 AC 4,039 ms
38,784 KB
testcase_25 AC 4,052 ms
38,656 KB
testcase_26 AC 4,049 ms
38,784 KB
testcase_27 AC 4,024 ms
38,784 KB
testcase_28 AC 4,167 ms
38,784 KB
testcase_29 AC 4,048 ms
38,784 KB
testcase_30 AC 4,042 ms
38,784 KB
testcase_31 AC 4,291 ms
38,656 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 21 ms
6,940 KB
testcase_39 AC 21 ms
6,944 KB
testcase_40 AC 21 ms
6,940 KB
testcase_41 AC 21 ms
6,940 KB
testcase_42 AC 22 ms
6,940 KB
testcase_43 AC 1,242 ms
19,072 KB
testcase_44 AC 1,216 ms
19,200 KB
testcase_45 AC 1,218 ms
19,200 KB
testcase_46 AC 1,221 ms
19,200 KB
testcase_47 AC 1,198 ms
19,200 KB
testcase_48 AC 1,214 ms
19,072 KB
testcase_49 AC 1,211 ms
19,200 KB
testcase_50 AC 1,228 ms
19,072 KB
testcase_51 AC 1,228 ms
19,200 KB
testcase_52 AC 1,223 ms
19,200 KB
testcase_53 AC 1,230 ms
19,200 KB
testcase_54 AC 1,252 ms
19,200 KB
testcase_55 AC 1,229 ms
19,200 KB
testcase_56 AC 1,218 ms
19,200 KB
testcase_57 AC 1,245 ms
19,200 KB
testcase_58 AC 1,254 ms
19,200 KB
testcase_59 AC 1,227 ms
19,200 KB
testcase_60 AC 1,226 ms
19,200 KB
testcase_61 AC 1,224 ms
19,072 KB
testcase_62 AC 1,228 ms
19,200 KB
testcase_63 AC 4,082 ms
38,784 KB
testcase_64 AC 2 ms
6,940 KB
testcase_65 AC 2 ms
6,944 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 4,066 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 1000000000;
int main(){
  int N;
  cin >> N;
  vector<int> P(N);
  for (int i = 0; i < N; i++){
    cin >> P[i];
    P[i]--;
  }
  vector<vector<int>> S(N + 1, vector<int>(N + 1, 0));
  for (int i = 0; i < N; i++){
    for (int j = i + 1; j < N; j++){
      if (P[i] > P[j]){
        S[i][j + 1]++;
      }
    }
  }  
  for (int i = 0; i <= N; i++){
    for (int j = 0; j < N; j++){
      S[i][j + 1] += S[i][j];
    }
  }
  for (int i = N; i >= 1; i--){
    for (int j = 0; j <= N; j++){
      S[i - 1][j] += S[i][j];
    }
  }
  vector<int> dp(N + 1, -INF);
  dp[0] = 0;
  for (int i = 0; i < N; i++){
    vector<int> dp2(N + 1, -INF);
    for (int j = i; j < N; j++){
      for (int k = j + 1; k <= N; k++){
        dp2[k] = max(dp2[k], dp[j] + S[j][k]);
      }
    }
    cout << S[0][N] - dp2[N] << endl;
    swap(dp, dp2);
  }
}
0