結果
問題 | No.919 You Are A Project Manager |
ユーザー | ningenMe |
提出日時 | 2019-09-12 23:28:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,275 bytes |
コンパイル時間 | 2,061 ms |
コンパイル使用メモリ | 195,620 KB |
実行使用メモリ | 22,584 KB |
最終ジャッジ日時 | 2024-09-19 04:18:16 |
合計ジャッジ時間 | 10,487 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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> void chmax(T& a, const T b){a=max(a,b);} template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} template <template <class tmp> class T, class U> ostream &operator<<(ostream &o, const T<U> &obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr)o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} void print(void) {cout << endl;} template <class Head> void print(Head&& head) {cout << head;print();} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);} inline void balance(multiset<long long>& stl,multiset<long long>& str) { while(stl.size()>str.size()+1) { long long tmp = *stl.rbegin(); str.insert(tmp); stl.erase(stl.find(tmp)); } while(stl.size()<str.size()) { stl.insert(*str.begin()); str.erase(str.begin()); } } inline void balanceLtoR(multiset<long long>& stl,multiset<long long>& str) { while(stl.size()>str.size()+1) { long long tmp = *stl.rbegin(); str.insert(tmp); stl.erase(stl.find(tmp)); } } inline void balanceRtoL(multiset<long long>& stl,multiset<long long>& str) { if(stl.size()<str.size()) { stl.insert(*str.begin()); str.erase(str.begin()); } } inline void exchange(multiset<long long>& stl,multiset<long long>& str){ long long tmpl = *stl.rbegin(); long long tmpr = *str.begin(); if(tmpl>tmpr) { stl.erase(stl.find(tmpl)); stl.insert(tmpr); str.erase(str.find(tmpr)); str.insert(tmpl); } } int main() { cin.tie(0);ios::sync_with_stdio(false); int N; cin >> N; vector<long long> A(N); for(int i = 0; i < N; ++i) cin >> A[i]; //クエリ区間を列挙、調和級数なのでO(NlogN) vector<pair<long long,long long>> range; for(int i = 1; i <= N; ++i) { for(int j = 0; j+i <= N; j+=i) range.push_back({j,j+i-1}); for(int j = N; 0 <= j-i; j-=i) range.push_back({j-i,j-1}); } //Mo順ソート O(NlogNlog(NlogN)) int bucket = 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&1)?(ar > br):(ar < br)); }); //Moで中央値列挙 O(Nsqrt(N)(logN)^2) int l = 0, r = 0; multiset<long long> stl,str; stl.insert(A[0]); unordered_map<long long,long long> mp; for(int& i:idx){ auto& xl = range[i].first; auto& xr = range[i].second; //左端を広げる while(xl < l){ l--; stl.insert(A[l]); if(str.size()) exchange(stl,str); balanceLtoR(stl,str); } //右端を広げる while(r < xr){ r++; stl.insert(A[r]); if(str.size()) exchange(stl,str); balanceLtoR(stl,str); } //左端を狭める while(l < xl){ if(stl.count(A[l])) { stl.erase(stl.find(A[l])); balanceRtoL(stl,str); } else { str.erase(str.find(A[l])); balanceLtoR(stl,str); } l++; } //左端を狭める while(xr < r){ if(stl.count(A[r])) { stl.erase(stl.find(A[r])); balanceRtoL(stl,str); } else { str.erase(str.find(A[r])); balanceLtoR(stl,str); } r--; } mp[xl*N+xr] = *stl.rbegin(); } long long ans = 0; int cnt = 0; for(long long i = 1; i <= N; ++i) { int M = N/i; vector<long long> lSum(M,0),rSum(M,0); vector<pair<long long,long long>> lRange(M),rRange(M); //区間取得 for(int j = 0; j < M; ++j) lRange[j] = range[cnt+j]; for(int j = M-1; 0 <= j; --j) rRange[j] = range[cnt + 2*M-1 - j]; //中央値取得 for(int j = 0; j < M; ++j) lSum[j] = i*mp[lRange[j].first*N+lRange[j].second]; for(int j = M-1; 0 <= j; --j) rSum[j] = i*mp[rRange[j].first*N+rRange[j].second]; //累積和 for(int j = 1; j < M; ++j) lSum[j] += lSum[j-1]; for(int j = M-2; 0 <= j; --j) rSum[j] += rSum[j+1]; //累積max for(int j = 1; j < M; ++j) chmax(lSum[j],lSum[j-1]); for(int j = M-2; 0 <= j; --j) chmax(rSum[j],rSum[j+1]); chmax(ans,lSum[M-1]); chmax(ans,rSum[0]); //尺取りしながら左右決め打ち全探索 int k = 0; for(int j = 0; j < M; ++j) { while(k < M && range[cnt + j].second >= range[cnt + 2*M-1-k].first) k++; if(k<M && lRange[j].second < rRange[k].first) { chmax(ans,lSum[j]+rSum[k]); } } cnt += 2*M; } cout << ans << endl; return 0; }