結果

問題 No.1867 Partitions and Inversions
ユーザー 👑 NachiaNachia
提出日時 2022-03-04 23:55:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,910 ms / 5,000 ms
コード長 784 bytes
コンパイル時間 845 ms
コンパイル使用メモリ 83,824 KB
実行使用メモリ 51,012 KB
最終ジャッジ日時 2024-07-18 22:57:08
合計ジャッジ時間 99,902 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2,570 ms
50,240 KB
testcase_03 AC 2,559 ms
50,496 KB
testcase_04 AC 2,499 ms
50,288 KB
testcase_05 AC 2,559 ms
50,896 KB
testcase_06 AC 2,569 ms
50,712 KB
testcase_07 AC 2,586 ms
50,408 KB
testcase_08 AC 2,542 ms
50,676 KB
testcase_09 AC 2,519 ms
51,012 KB
testcase_10 AC 2,529 ms
50,388 KB
testcase_11 AC 2,499 ms
50,368 KB
testcase_12 AC 2,503 ms
50,756 KB
testcase_13 AC 2,565 ms
50,284 KB
testcase_14 AC 2,504 ms
50,972 KB
testcase_15 AC 2,573 ms
50,308 KB
testcase_16 AC 2,525 ms
50,364 KB
testcase_17 AC 2,645 ms
50,480 KB
testcase_18 AC 2,545 ms
50,312 KB
testcase_19 AC 2,910 ms
50,588 KB
testcase_20 AC 2,625 ms
50,076 KB
testcase_21 AC 2,533 ms
50,224 KB
testcase_22 AC 2,505 ms
50,156 KB
testcase_23 AC 2,530 ms
50,236 KB
testcase_24 AC 2,585 ms
50,828 KB
testcase_25 AC 2,564 ms
50,256 KB
testcase_26 AC 2,494 ms
50,240 KB
testcase_27 AC 2,570 ms
50,660 KB
testcase_28 AC 2,569 ms
50,120 KB
testcase_29 AC 2,536 ms
50,128 KB
testcase_30 AC 2,520 ms
50,304 KB
testcase_31 AC 2,525 ms
50,616 KB
testcase_32 AC 2 ms
6,940 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 1 ms
6,944 KB
testcase_38 AC 17 ms
11,744 KB
testcase_39 AC 16 ms
10,296 KB
testcase_40 AC 17 ms
11,848 KB
testcase_41 AC 17 ms
11,928 KB
testcase_42 AC 17 ms
10,272 KB
testcase_43 AC 754 ms
35,356 KB
testcase_44 AC 752 ms
35,744 KB
testcase_45 AC 758 ms
36,440 KB
testcase_46 AC 758 ms
36,736 KB
testcase_47 AC 750 ms
35,256 KB
testcase_48 AC 770 ms
36,348 KB
testcase_49 AC 746 ms
35,664 KB
testcase_50 AC 762 ms
35,320 KB
testcase_51 AC 756 ms
36,820 KB
testcase_52 AC 768 ms
35,544 KB
testcase_53 AC 763 ms
35,736 KB
testcase_54 AC 750 ms
35,516 KB
testcase_55 AC 765 ms
35,332 KB
testcase_56 AC 775 ms
35,304 KB
testcase_57 AC 791 ms
35,292 KB
testcase_58 AC 763 ms
35,348 KB
testcase_59 AC 769 ms
36,880 KB
testcase_60 AC 771 ms
36,400 KB
testcase_61 AC 771 ms
35,236 KB
testcase_62 AC 777 ms
36,752 KB
testcase_63 AC 2,745 ms
50,116 KB
testcase_64 AC 2 ms
6,940 KB
testcase_65 AC 2 ms
6,940 KB
testcase_66 AC 2 ms
6,940 KB
testcase_67 AC 2,575 ms
37,888 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[4096];
int I[3001][4096];
int dp[4096] = {};
int ans[4096] = {};

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