結果

問題 No.919 You Are A Project Manager
ユーザー kotatsugamekotatsugame
提出日時 2019-10-25 23:17:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,422 bytes
コンパイル時間 1,036 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 394,752 KB
最終ジャッジ日時 2024-09-13 08:44:12
合計ジャッジ時間 40,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 AC 51 ms
29,184 KB
testcase_05 AC 60 ms
33,536 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 501 ms
75,520 KB
testcase_08 AC 39 ms
9,472 KB
testcase_09 AC 20 ms
7,168 KB
testcase_10 AC 61 ms
12,928 KB
testcase_11 AC 54 ms
11,904 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 88 ms
17,280 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 163 ms
28,160 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2,441 ms
333,312 KB
testcase_21 AC 1,010 ms
394,624 KB
testcase_22 AC 581 ms
86,912 KB
testcase_23 AC 559 ms
83,456 KB
testcase_24 AC 627 ms
92,800 KB
testcase_25 AC 582 ms
86,784 KB
testcase_26 AC 2,338 ms
321,152 KB
testcase_27 AC 1,859 ms
257,408 KB
testcase_28 AC 2,781 ms
379,392 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 721 ms
394,368 KB
testcase_32 AC 738 ms
393,984 KB
testcase_33 AC 692 ms
101,504 KB
testcase_34 AC 689 ms
101,504 KB
testcase_35 AC 2,888 ms
394,624 KB
testcase_36 AC 2,901 ms
394,752 KB
testcase_37 AC 2,892 ms
394,624 KB
testcase_38 AC 2,895 ms
394,624 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 11 ms
6,944 KB
testcase_41 AC 3 ms
6,948 KB
testcase_42 AC 3 ms
6,940 KB
testcase_43 AC 6 ms
6,940 KB
testcase_44 AC 17 ms
6,940 KB
testcase_45 AC 3 ms
6,944 KB
testcase_46 AC 14 ms
6,940 KB
testcase_47 AC 587 ms
87,552 KB
testcase_48 AC 571 ms
85,376 KB
testcase_49 AC 644 ms
95,488 KB
testcase_50 AC 580 ms
86,656 KB
testcase_51 AC 491 ms
74,496 KB
testcase_52 AC 314 ms
49,536 KB
testcase_53 AC 493 ms
74,624 KB
testcase_54 AC 11 ms
6,940 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
int N;
vector<int>tb[2][10000];
main()
{
	cin>>N;
	vector<int>A(N);
	for(int i=0;i<N;i++)cin>>A[i];
	long ans=0;
	for(int K=1;2*K<=N;K++)
	{
		vector<long>L(N/K),R(N/K);
		vector<int>a=A;
		if(K%2)
		{
			for(int i=0;i+K<=N;i+=K)sort(a.begin()+i,a.begin()+i+K);
		}
		else
		{
			for(int i=0;i+K<=N;i+=K)
			{
				int l=0,r=K/2;
				for(int c=0;c<K;c++)
				{
					if(tb[0][K/2][i+l]<tb[0][K/2][i+r])
					{
						a[i+c]=tb[0][K/2][i+l++];
					}
					else
					{
						a[i+c]=tb[0][K/2][i+r++];
					}
				}
			}
		}
		for(int i=0;i*K+K<=N;i++)
		{
			L[i]=a[i*K+(K-1)/2];
		}
		if(K*2<=N)tb[0][K]=a;
		a=A;
		reverse(a.begin(),a.end());
		if(K%2)
		{
			for(int i=0;i+K<=N;i+=K)sort(a.begin()+i,a.begin()+i+K);
		}
		else
		{
			for(int i=0;i+K<=N;i+=K)
			{
				int l=0,r=K/2;
				for(int c=0;c<K;c++)
				{
					if(tb[1][K/2][i+l]<tb[1][K/2][i+r])
					{
						a[i+c]=tb[1][K/2][i+l++];
					}
					else
					{
						a[i+c]=tb[1][K/2][i+r++];
					}
				}
			}
		}
		if(K*2<=N)tb[1][K]=a;
		for(int i=0;i*K+K<=N;i++)
		{
			R[i]=a[i*K+(K-1)/2];
		}
		for(int i=1;i<N/K;i++)
		{
			L[i]+=L[i-1];
			R[i]+=R[i-1];
		}
		for(int i=1;i<N/K;i++)
		{
			L[i]=max(L[i],L[i-1]);
			R[i]=max(R[i],R[i-1]);
		}
		for(int i=-1;i<N/K;i++)
		{
			int j=N/K-i-2;
			ans=max(ans,((i<0?0L:L[i])+(j<0?0L:R[j]))*K);
		}
	}
	cout<<ans<<endl;
}
0