結果

問題 No.704 ゴミ拾い Medium
ユーザー kmjpkmjp
提出日時 2018-06-16 02:06:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 173 ms / 1,500 ms
コード長 1,584 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 163,636 KB
実行使用メモリ 45,348 KB
最終ジャッジ日時 2024-06-30 15:53:29
合計ジャッジ時間 7,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
42,088 KB
testcase_01 AC 16 ms
35,912 KB
testcase_02 AC 15 ms
35,968 KB
testcase_03 AC 16 ms
42,092 KB
testcase_04 AC 15 ms
35,860 KB
testcase_05 AC 15 ms
35,840 KB
testcase_06 AC 15 ms
35,840 KB
testcase_07 AC 15 ms
35,840 KB
testcase_08 AC 14 ms
42,084 KB
testcase_09 AC 15 ms
36,076 KB
testcase_10 AC 15 ms
35,968 KB
testcase_11 AC 15 ms
35,840 KB
testcase_12 AC 15 ms
35,852 KB
testcase_13 AC 16 ms
42,084 KB
testcase_14 AC 16 ms
35,980 KB
testcase_15 AC 16 ms
36,096 KB
testcase_16 AC 16 ms
35,968 KB
testcase_17 AC 16 ms
35,968 KB
testcase_18 AC 17 ms
36,080 KB
testcase_19 AC 15 ms
42,088 KB
testcase_20 AC 16 ms
35,928 KB
testcase_21 AC 16 ms
36,096 KB
testcase_22 AC 16 ms
35,968 KB
testcase_23 AC 16 ms
36,004 KB
testcase_24 AC 172 ms
45,256 KB
testcase_25 AC 171 ms
45,212 KB
testcase_26 AC 170 ms
45,312 KB
testcase_27 AC 173 ms
45,288 KB
testcase_28 AC 172 ms
45,288 KB
testcase_29 AC 173 ms
45,300 KB
testcase_30 AC 173 ms
45,312 KB
testcase_31 AC 173 ms
45,276 KB
testcase_32 AC 171 ms
45,308 KB
testcase_33 AC 172 ms
45,340 KB
testcase_34 AC 137 ms
45,312 KB
testcase_35 AC 139 ms
45,292 KB
testcase_36 AC 138 ms
45,312 KB
testcase_37 AC 136 ms
45,348 KB
testcase_38 AC 136 ms
45,312 KB
testcase_39 AC 137 ms
45,272 KB
testcase_40 AC 136 ms
45,276 KB
testcase_41 AC 135 ms
45,344 KB
testcase_42 AC 136 ms
45,320 KB
testcase_43 AC 136 ms
45,312 KB
testcase_44 AC 15 ms
35,840 KB
testcase_45 AC 15 ms
35,968 KB
testcase_46 AC 162 ms
45,312 KB
testcase_47 AC 168 ms
45,312 KB
権限があれば一括ダウンロードができます

ソースコード

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))
//-------------------------------------------------------

template<class V,int NV> class SegTree_1 {
public:
	vector<V> val;
	static V const def=1LL<<60;
	V comp(V l,V r){ return min(l,r);};
	
	SegTree_1(){val=vector<V>(NV*2,def);};
	V getval(int x,int y,int l=0,int r=NV,int k=1) { // x<=i<y
		if(r<=x || y<=l) return def;
		if(x<=l && r<=y) return val[k];
		return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1));
	}
	void update(int entry, V v) {
		entry += NV;
		val[entry]=comp(v,val[entry]);
		while(entry>1) entry>>=1, val[entry]=comp(val[entry*2],val[entry*2+1]);
	}
};

SegTree_1<ll,1<<20> L,R;
int N;
ll A[303030];
ll X[303030];
ll Y[303030];
ll D[303030];



void solve() {
	int i,j,k,l,r,x,y; string s;
	cin>>N;
	FOR(i,N) cin>>A[i];
	FOR(i,N) cin>>X[i];
	FOR(i,N) cin>>Y[i];
	
	FOR(i,N) {
		L.update(X[i],-X[i]+D[i]+Y[i]);
		R.update(X[i],X[i]+D[i]+Y[i]);
		
		D[i+1]=min(L.getval(0,A[i])+A[i],R.getval(A[i],1<<19)-A[i]);
	}
	cout<<D[N]<<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