結果

問題 No.1867 Partitions and Inversions
ユーザー SSRSSSRS
提出日時 2022-03-04 23:50:03
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,305 ms / 5,000 ms
コード長 988 bytes
コンパイル時間 3,089 ms
コンパイル使用メモリ 225,248 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-07-18 22:32:07
合計ジャッジ時間 52,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1,245 ms
38,656 KB
testcase_03 AC 1,268 ms
38,784 KB
testcase_04 AC 1,248 ms
38,656 KB
testcase_05 AC 1,264 ms
38,784 KB
testcase_06 AC 1,260 ms
38,784 KB
testcase_07 AC 1,296 ms
38,656 KB
testcase_08 AC 1,305 ms
38,656 KB
testcase_09 AC 1,251 ms
38,784 KB
testcase_10 AC 1,256 ms
38,784 KB
testcase_11 AC 1,233 ms
38,784 KB
testcase_12 AC 1,288 ms
38,784 KB
testcase_13 AC 1,232 ms
38,784 KB
testcase_14 AC 1,257 ms
38,784 KB
testcase_15 AC 1,266 ms
38,656 KB
testcase_16 AC 1,275 ms
38,784 KB
testcase_17 AC 1,248 ms
38,656 KB
testcase_18 AC 1,222 ms
38,784 KB
testcase_19 AC 1,269 ms
38,784 KB
testcase_20 AC 1,278 ms
38,784 KB
testcase_21 AC 1,281 ms
38,784 KB
testcase_22 AC 1,246 ms
38,784 KB
testcase_23 AC 1,251 ms
38,784 KB
testcase_24 AC 1,254 ms
38,656 KB
testcase_25 AC 1,289 ms
38,784 KB
testcase_26 AC 1,263 ms
38,784 KB
testcase_27 AC 1,258 ms
38,784 KB
testcase_28 AC 1,233 ms
38,656 KB
testcase_29 AC 1,226 ms
38,912 KB
testcase_30 AC 1,265 ms
38,784 KB
testcase_31 AC 1,254 ms
38,784 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 2 ms
6,940 KB
testcase_38 AC 7 ms
6,940 KB
testcase_39 AC 7 ms
6,940 KB
testcase_40 AC 7 ms
6,940 KB
testcase_41 AC 7 ms
6,944 KB
testcase_42 AC 7 ms
6,940 KB
testcase_43 AC 381 ms
19,072 KB
testcase_44 AC 384 ms
19,200 KB
testcase_45 AC 383 ms
19,200 KB
testcase_46 AC 381 ms
19,200 KB
testcase_47 AC 383 ms
19,200 KB
testcase_48 AC 384 ms
19,200 KB
testcase_49 AC 391 ms
19,200 KB
testcase_50 AC 386 ms
19,328 KB
testcase_51 AC 371 ms
19,200 KB
testcase_52 AC 385 ms
19,072 KB
testcase_53 AC 375 ms
19,200 KB
testcase_54 AC 378 ms
19,200 KB
testcase_55 AC 373 ms
19,072 KB
testcase_56 AC 375 ms
19,200 KB
testcase_57 AC 379 ms
19,200 KB
testcase_58 AC 379 ms
19,200 KB
testcase_59 AC 390 ms
19,072 KB
testcase_60 AC 384 ms
19,200 KB
testcase_61 AC 383 ms
19,200 KB
testcase_62 AC 389 ms
19,072 KB
testcase_63 AC 1,239 ms
38,784 KB
testcase_64 AC 2 ms
6,944 KB
testcase_65 AC 2 ms
6,944 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 1,277 ms
38,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#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