結果
問題 | No.919 You Are A Project Manager |
ユーザー | ningenMe |
提出日時 | 2019-09-25 12:38:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 5,087 bytes |
コンパイル時間 | 7,928 ms |
コンパイル使用メモリ | 196,820 KB |
実行使用メモリ | 14,556 KB |
最終ジャッジ日時 | 2024-09-22 03:12:45 |
合計ジャッジ時間 | 27,736 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 12 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 86 ms
6,940 KB |
testcase_05 | AC | 85 ms
6,944 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template <class T> inline 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, greater<>>& stl,multiset<long long>& str) { while( (stl.size()!=str.size()) && (stl.size() != str.size()+1)) { if(stl.size()>str.size()) { str.insert(*stl.begin()); stl.erase(stl.begin()); } else { stl.insert(*str.begin()); str.erase(str.begin()); } } } inline void exchange(multiset<long long, greater<>>& stl,multiset<long long>& str){ if(!str.size()) return; long long tmpl = *stl.begin(); long long tmpr = *str.begin(); while(tmpl>tmpr){ stl.erase(stl.begin()); str.erase(str.begin()); stl.insert(tmpr); str.insert(tmpl); tmpl = *stl.rbegin(); tmpr = *str.begin(); } } int main() { cin.tie(0);ios::sync_with_stdio(false); int N; cin >> N; assert(1<=N && N <= 10000); vector<long long> A(N); for(int i = 0; i < N; ++i) cin >> A[i]; for(int i = 0; i < N; ++i) assert(-1000000000<=A[i] && A[i] <= 1000000000); //クエリ区間を列挙、調和級数なのでO(N*logN) vector<pair<long long,long long>> 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*log(NlogN)) 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<long long, greater<>> stl; multiset<long long> 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]); 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<long long,long long>> lRange(M),rRange(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]; } //累積和 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 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]); //尺取りしながら左右決め打ち全探索 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; }