結果

問題 No.1867 Partitions and Inversions
ユーザー SSRSSSRS
提出日時 2022-03-04 22:52:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 2,065 ms
コンパイル使用メモリ 207,024 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-07-18 21:27:20
合計ジャッジ時間 6,184 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 65 ms
38,784 KB
testcase_03 AC 62 ms
38,784 KB
testcase_04 AC 63 ms
38,784 KB
testcase_05 AC 62 ms
38,784 KB
testcase_06 AC 61 ms
38,784 KB
testcase_07 AC 63 ms
38,656 KB
testcase_08 AC 65 ms
38,784 KB
testcase_09 AC 63 ms
38,784 KB
testcase_10 AC 64 ms
38,784 KB
testcase_11 AC 64 ms
38,784 KB
testcase_12 AC 62 ms
38,784 KB
testcase_13 AC 63 ms
38,784 KB
testcase_14 AC 67 ms
38,784 KB
testcase_15 AC 63 ms
38,784 KB
testcase_16 AC 65 ms
38,784 KB
testcase_17 AC 63 ms
38,656 KB
testcase_18 AC 63 ms
38,784 KB
testcase_19 AC 62 ms
38,784 KB
testcase_20 AC 64 ms
38,784 KB
testcase_21 AC 63 ms
38,784 KB
testcase_22 AC 63 ms
38,656 KB
testcase_23 AC 63 ms
38,656 KB
testcase_24 AC 64 ms
38,784 KB
testcase_25 AC 63 ms
38,784 KB
testcase_26 AC 63 ms
38,784 KB
testcase_27 AC 66 ms
38,784 KB
testcase_28 AC 63 ms
38,784 KB
testcase_29 AC 63 ms
38,784 KB
testcase_30 WA -
testcase_31 AC 67 ms
38,784 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 4 ms
5,376 KB
testcase_40 AC 4 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 4 ms
5,376 KB
testcase_43 AC 28 ms
19,328 KB
testcase_44 AC 28 ms
19,200 KB
testcase_45 AC 28 ms
19,200 KB
testcase_46 AC 29 ms
19,200 KB
testcase_47 AC 27 ms
19,200 KB
testcase_48 AC 26 ms
19,072 KB
testcase_49 AC 28 ms
19,328 KB
testcase_50 AC 28 ms
19,328 KB
testcase_51 AC 28 ms
19,200 KB
testcase_52 AC 27 ms
19,200 KB
testcase_53 AC 31 ms
19,200 KB
testcase_54 AC 29 ms
19,200 KB
testcase_55 AC 28 ms
19,200 KB
testcase_56 AC 28 ms
19,200 KB
testcase_57 AC 28 ms
19,200 KB
testcase_58 AC 29 ms
19,200 KB
testcase_59 AC 29 ms
19,328 KB
testcase_60 AC 29 ms
19,200 KB
testcase_61 AC 28 ms
19,200 KB
testcase_62 AC 28 ms
19,328 KB
testcase_63 AC 54 ms
38,784 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 55 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> mx(N + 1, 0);
  for (int i = 0; i <= N; i++){
    for (int j = i; j <= N; j++){
      mx[j - i] = max(mx[j - i], S[i][j]);
    }
  }
  for (int i = 1; i <= N; i++){
    cout << S[0][N] - mx[N + 1 -i] << endl;
  }
}
0