結果
問題 | No.919 You Are A Project Manager |
ユーザー | ningenMe |
提出日時 | 2019-10-21 02:49:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,520 bytes |
コンパイル時間 | 2,405 ms |
コンパイル使用メモリ | 202,356 KB |
実行使用メモリ | 19,652 KB |
最終ジャッジ日時 | 2024-07-02 17:38:49 |
合計ジャッジ時間 | 11,018 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template <class T> inline void chmax(T& a, const T b){a=max(a,b);} // 要素の数を均等に保つ inline void balance(multiset<int, greater<>> stl,multiset<int> str) { while(stl.size() < str.size()) { stl.insert(*str.begin()); str.erase(str.begin()); } while(stl.size() > str.size()+1) { str.insert(*stl.begin()); stl.erase(stl.begin()); } } // 要素の順序を保つ inline void exchange(multiset<int, greater<>> stl,multiset<int> str){ if(!str.size()) return; for(int tmpl = *stl.begin(),tmpr = *str.begin(); tmpl>tmpr; tmpl = *stl.begin(), tmpr = *str.begin()) { stl.erase(stl.begin()); str.erase(str.begin()); stl.insert(tmpr); str.insert(tmpl); } } int main() { cin.tie(0);ios::sync_with_stdio(false); int N; cin >> N; vector<int> A(N); for(int i = 0; i < N; ++i) cin >> A[i]; //クエリ区間を列挙、調和級数なのでO(N*logN) vector<pair<int,int>> range; for(int n = 1; n <= N; ++n) { int M = N/n; for(int i = 0; i+n <= N; i+=n) range.push_back({i,i+n-1}); for(int i = N-M*n; i+n <= N; i+=n) range.push_back({i,i+n-1}); } //Mo順ソート O(N*(logN)^2) int bucket = (int)sqrt(N); vector<int> idx(range.size()); iota(idx.begin(),idx.end(),0); sort(idx.begin(),idx.end(),[&](int a, int b){ auto al = range[a].first/bucket; auto& ar = range[a].second; auto bl = range[b].first/bucket; auto& br = range[b].second; return (al != bl) ? (al < bl) : ((al%2)?(ar > br):(ar < br)); }); //Moで中央値列挙 O(N*sqrt(N)*(logN)^2) int l = 0, r = 0; multiset<int, greater<>> stl; multiset<int> str; stl.insert(A[0]); unordered_map<int,int> mp; for(int& i:idx){ auto& xl = range[i].first; auto& xr = range[i].second; //左端を広げる while(xl < l){ l--; stl.insert(A[l]); balance(stl,str); exchange(stl,str); } //右端を広げる while(r < xr){ r++; stl.insert(A[r]); balance(stl,str); exchange(stl,str); } //左端を狭める while(l < xl){ auto itr = stl.find(A[l]); if(itr != stl.end()) stl.erase(itr); else str.erase(str.find(A[l])); l++; balance(stl,str); exchange(stl,str); } //右端を狭める while(xr < r){ auto itr = stl.find(A[r]); if(itr != stl.end()) stl.erase(itr); else str.erase(str.find(A[r])); r--; balance(stl,str); exchange(stl,str); } mp[xl*N+xr] = *stl.begin(); } long long ans = 0; int cnt = 0; //区間長決め打ち全探索O(N*logN) for(long long n = 1; n <= N; ++n) { int M = N/n; vector<long long> lSum(M,0),rSum(M,0); vector<pair<int, int>> lRange(M),rRange(M); //区間取得 O(M) for(int i = 0; i < M; ++i) { lRange[i] = range[cnt + i]; lSum[i] = n*mp[lRange[i].first*N+lRange[i].second]; rRange[i] = range[cnt + i + M]; rSum[i] = n*mp[rRange[i].first*N+rRange[i].second]; } //累積和 O(M) for(int i = 1; i < M; ++i) lSum[i] += lSum[i-1]; for(int i = M-2; 0 <= i; --i) rSum[i] += rSum[i+1]; //累積max O(M) for(int i = 1; i < M; ++i) chmax(lSum[i],lSum[i-1]); for(int i = M-2; 0 <= i; --i) chmax(rSum[i],rSum[i+1]); chmax(ans,lSum[M-1]); chmax(ans,rSum[0]); //尺取りしながら左右決め打ち全探索 O(M) int j = 0; for(int i = 0; i < M; ++i) { while(j < M && lRange[i].second >= rRange[j].first) j++; if(j<M && lRange[i].second < rRange[j].first) { chmax(ans,lSum[i]+rSum[j]); } } cnt += 2*M; } cout << ans << endl; return 0; }