結果

問題 No.919 You Are A Project Manager
ユーザー 👑 kmjpkmjp
提出日時 2019-10-26 01:42:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,391 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 189,832 KB
実行使用メモリ 19,752 KB
最終ジャッジ日時 2023-10-11 14:15:08
合計ジャッジ時間 11,435 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#undef _P
#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 ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
int A[10101];
map<int,int> T[101010];
vector<pair<int,int>> E[101];

multiset<int> X,Y;
void add(int v) {
	X.insert(v);
	Y.insert(*X.rbegin());
	X.erase(X.find(*X.rbegin()));
	X.insert(*Y.begin());
	Y.erase(Y.begin());
	if(X.size()>Y.size()+1) {
		Y.insert(*X.rbegin());
		X.erase(X.find(*X.rbegin()));
	}
}

void del(int v) {
	if(X.count(v)) {
		X.erase(X.find(v));
		if(X.size()<Y.size()) {
			X.insert(*Y.begin());
			Y.erase(Y.begin());
		}
	}
	else {
		Y.erase(Y.find(v));
		if(X.size()>Y.size()+1) {
			Y.insert(*X.rbegin());
			X.erase(X.find(*X.rbegin()));
		}
	}
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) cin>>A[i];
	for(l=1;l<=N;l++) {
		for(x=0;x+l<=N;x+=l) E[x/100].push_back({x,x+l});
		for(x=N-l;x>=0;x-=l) E[x/100].push_back({x,x+l});
	}
	FOR(i,100) {
		sort(ALL(E[i]));
		int L=i*100,R=i*100;
		X.clear(),Y.clear();
		
		FORR(e,E[i]) {
			while(e.first<L) add(A[--L]);
			while(R<e.second) add(A[R++]);
			while(L<e.first) del(A[L++]);
			while(e.second<R) del(A[--R]);
			
			assert(X.size()==Y.size() || X.size()==Y.size()+1);
			T[e.first][e.second]=*X.rbegin();
		}
	}
	//FOR(i,N) FORR(t,T[i]) cout<<i<<" "<<t.first<<" "<<t.second<<endl;
	
	ll ret=0;
	for(l=1;l<=N;l++) {
		vector<ll> R;
		R.push_back(0);
		ll sum=0,ma=0;
		for(x=N-l;x>=0;x-=l) {
			sum+=T[x][x+l];
			ma=max(ma,sum);
			R.push_back(ma);
		}
		/*
		cout<<l<<" ";
		FORR(r,R) cout<<r<<" ";
		cout<<endl;
		*/
		ret=max(ret,l*R.back());
		sum=0;
		for(x=0;x+l<=N;x+=l) {
			sum+=T[x][x+l];
			if(N%l) {
				ret=max(ret,l*(sum+R[R.size()-1-x/l]));
			}
			else {
				ret=max(ret,l*(sum+R[R.size()-2-x/l]));
			}
			//cout<<"!"<<x/l<<" "<<sum<<" "<<R[R.size()-1-x/l]<<endl;
		}
	}
	cout<<ret<<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