結果

問題 No.1867 Partitions and Inversions
ユーザー kmjpkmjp
提出日時 2022-03-07 00:46:20
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4,543 ms / 5,000 ms
コード長 1,363 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 202,520 KB
実行使用メモリ 74,876 KB
最終ジャッジ日時 2024-11-14 06:14:19
合計ジャッジ時間 173,532 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4,407 ms
74,588 KB
testcase_03 AC 4,449 ms
74,484 KB
testcase_04 AC 4,447 ms
74,472 KB
testcase_05 AC 4,424 ms
73,896 KB
testcase_06 AC 4,502 ms
74,372 KB
testcase_07 AC 4,458 ms
74,332 KB
testcase_08 AC 4,472 ms
74,008 KB
testcase_09 AC 4,482 ms
73,992 KB
testcase_10 AC 4,444 ms
74,660 KB
testcase_11 AC 4,504 ms
74,212 KB
testcase_12 AC 4,535 ms
74,408 KB
testcase_13 AC 4,505 ms
74,160 KB
testcase_14 AC 4,487 ms
74,600 KB
testcase_15 AC 4,479 ms
73,952 KB
testcase_16 AC 4,511 ms
73,852 KB
testcase_17 AC 4,489 ms
74,696 KB
testcase_18 AC 4,491 ms
74,396 KB
testcase_19 AC 4,472 ms
74,312 KB
testcase_20 AC 4,464 ms
74,152 KB
testcase_21 AC 4,543 ms
74,620 KB
testcase_22 AC 4,517 ms
74,352 KB
testcase_23 AC 4,462 ms
74,344 KB
testcase_24 AC 4,528 ms
74,364 KB
testcase_25 AC 4,483 ms
74,624 KB
testcase_26 AC 4,497 ms
74,820 KB
testcase_27 AC 4,485 ms
74,768 KB
testcase_28 AC 4,475 ms
74,876 KB
testcase_29 AC 4,487 ms
73,972 KB
testcase_30 AC 4,485 ms
74,604 KB
testcase_31 AC 4,475 ms
73,892 KB
testcase_32 AC 3 ms
6,820 KB
testcase_33 AC 3 ms
6,816 KB
testcase_34 AC 3 ms
6,816 KB
testcase_35 AC 2 ms
6,820 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 26 ms
16,160 KB
testcase_39 AC 26 ms
16,972 KB
testcase_40 AC 26 ms
16,348 KB
testcase_41 AC 26 ms
18,532 KB
testcase_42 AC 27 ms
18,752 KB
testcase_43 AC 1,267 ms
52,996 KB
testcase_44 AC 1,262 ms
53,176 KB
testcase_45 AC 1,276 ms
54,008 KB
testcase_46 AC 1,276 ms
53,408 KB
testcase_47 AC 1,286 ms
53,388 KB
testcase_48 AC 1,278 ms
52,840 KB
testcase_49 AC 1,279 ms
53,752 KB
testcase_50 AC 1,278 ms
52,920 KB
testcase_51 AC 1,284 ms
54,724 KB
testcase_52 AC 1,303 ms
53,152 KB
testcase_53 AC 1,277 ms
53,232 KB
testcase_54 AC 1,288 ms
53,256 KB
testcase_55 AC 1,282 ms
53,684 KB
testcase_56 AC 1,281 ms
52,952 KB
testcase_57 AC 1,272 ms
53,884 KB
testcase_58 AC 1,284 ms
53,136 KB
testcase_59 AC 1,272 ms
53,536 KB
testcase_60 AC 1,284 ms
53,528 KB
testcase_61 AC 1,277 ms
54,468 KB
testcase_62 AC 1,280 ms
53,112 KB
testcase_63 AC 4,522 ms
74,152 KB
testcase_64 AC 2 ms
6,816 KB
testcase_65 AC 2 ms
6,816 KB
testcase_66 AC 3 ms
6,820 KB
testcase_67 AC 4,496 ms
73,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
int P[3030];
int S[3030][3030];
int sum[3030];

int dp[3030][3030];
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) {
		cin>>P[i];
		P[i]--;
	}
	
	FOR(x,N) {
		ZERO(sum);
		FOR(y,x) sum[P[y]]++;
		FOR(y,N+1) if(y) sum[y]+=sum[y-1];
		int pat=0;
		for(y=x;y<N;y++) {
			pat+=sum[N]-sum[P[y]];
			S[x][y+1]=pat;
		}
	}
	FOR(i,N+1) dp[0][i]=1<<30;
	dp[0][0]=0;
	for(i=1;i<=N;i++) {
		FOR(j,N+1) dp[i][j]=1<<30;
		for(j=i-1;j<=N-1;j++) {
			for(x=j+1;x<=N;x++) dp[i][x]=min(dp[i][x],dp[i-1][j]+S[j][x]);
		}
		cout<<dp[i][N]<<endl;
	}
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0