結果
問題 | No.705 ゴミ拾い Hard |
ユーザー | tubuann |
提出日時 | 2019-06-28 11:21:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 345 ms / 1,500 ms |
コード長 | 3,152 bytes |
コンパイル時間 | 1,415 ms |
コンパイル使用メモリ | 143,084 KB |
実行使用メモリ | 13,256 KB |
最終ジャッジ日時 | 2024-07-02 04:07:27 |
合計ジャッジ時間 | 7,693 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 215 ms
13,124 KB |
testcase_25 | AC | 214 ms
13,252 KB |
testcase_26 | AC | 212 ms
13,128 KB |
testcase_27 | AC | 212 ms
13,256 KB |
testcase_28 | AC | 214 ms
13,000 KB |
testcase_29 | AC | 216 ms
13,128 KB |
testcase_30 | AC | 226 ms
13,124 KB |
testcase_31 | AC | 281 ms
13,124 KB |
testcase_32 | AC | 277 ms
13,252 KB |
testcase_33 | AC | 305 ms
13,128 KB |
testcase_34 | AC | 304 ms
13,256 KB |
testcase_35 | AC | 319 ms
12,996 KB |
testcase_36 | AC | 320 ms
13,124 KB |
testcase_37 | AC | 318 ms
13,124 KB |
testcase_38 | AC | 319 ms
13,124 KB |
testcase_39 | AC | 218 ms
13,252 KB |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 345 ms
13,128 KB |
ソースコード
#include<iomanip> #include<limits> #include<thread> #include<utility> #include<iostream> #include<string> #include<algorithm> #include<set> #include<map> #include<vector> #include<stack> #include<queue> #include<cmath> #include<numeric> #include<cassert> #include<random> #include<chrono> #include<unordered_set> #include<unordered_map> #include<fstream> #include<list> #include<functional> #include<bitset> #include<complex> #include<tuple> using namespace std; typedef unsigned long long int ull; typedef long long int ll; typedef pair<ll,ll> pll; typedef long double D; typedef complex<D> P; #define F first #define S second const ll E=1e18+7; const ll MOD=1000000007; template<typename T,typename U>istream & operator >> (istream &i,pair<T,U> &A){i>>A.F>>A.S; return i;} template<typename T>istream & operator >> (istream &i,vector<T> &A){for(auto &I:A){i>>I;} return i;} template<typename T,typename U>ostream & operator << (ostream &o,pair<T,U> &A){o<<A.F<<" "<<A.S; return o;} template<typename T>ostream & operator << (ostream &o,vector<T> &A){ll i=A.size(); for(auto &I:A){o<<I<<(--i?" ":"");} return o;} template<typename T>vector<T> & cset(vector<T> &A,T e=T()){for(auto &I:A){I=e;} return A;} namespace Monotone_Minima{ //argmin(cul(i,*))<=argmin(cul(j,*)) for(i<j) //を満たすn行m列の行列で、各行の最小値を求め、そのindexを返す。 template<typename T,typename F> vector<int> argmin(F cul,int n,int m){ vector<int> ret(n,-1); int i=2; while(i<n){i<<=1;} while(i>>=1){ for(int j=0;j<n;j+=i){ if(ret[j]!=-1){continue;} int l=(j-i>=0 && ret[j-i]!=-1?ret[j-i]:0),r=(j+i<n && ret[j+i]!=-1?ret[j+i]+1:m); T a=cul(j,l); ret[j]=l; for(int k=l+1;k<r;k++){ if(cul(j,k)<a){ a=cul(j,k); ret[j]=k; } } } } return ret; } //f(i,k)+f(j,l)<=f(i,l)+f(j,k) for(i<=j,k<=l) //を満たすn行n列の行列Aに対して、 //dp[i]=min_{j<i} dp[j]+A_{i,j} //を求める。 template<typename T,typename F> vector<T> divide_and_conquer(F cul,int n){ vector<T> ret(n,0); for(int i=1;i<n;i++){ret[i]=ret[0]+cul(i,0);} for(int i=1;i<n;i++){ int j=i&(-i); int k=i-j; auto fnc=[&](int a,int b){return ret[k+b]+cul(i+a,k+b);}; vector<int> am=argmin<T>(fnc,min(j,n-i),j); for(int s=0;s<j && i+s<n;s++){ T a=fnc(s,am[s]); if(a<ret[i+s]){ret[i+s]=a;} } } return ret; } } using namespace Monotone_Minima; int main(){ cin.tie(0); ios::sync_with_stdio(0); ll n; cin>>n; vector<ll> A(n),X(n),Y(n); cin>>A>>X>>Y; function<ll(int,int)> cul=[&](int i,int j){i--; return i<j?1e15:abs((A[i]-X[j])*(A[i]-X[j])*(A[i]-X[j]))+abs(Y[j]*Y[j]*Y[j]);}; vector<ll> ans=divide_and_conquer<ll,function<ll(int,int)>>(cul,n+1); cout<<ans.back()<<endl; return 0; }