結果

問題 No.704 ゴミ拾い Medium
ユーザー 👑 kmjpkmjp
提出日時 2018-06-16 02:06:24
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 177 ms / 1,500 ms
コード長 1,584 bytes
コンパイル時間 1,457 ms
コンパイル使用メモリ 158,496 KB
実行使用メモリ 45,284 KB
最終ジャッジ日時 2023-09-13 05:43:23
合計ジャッジ時間 7,660 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
41,940 KB
testcase_01 AC 12 ms
41,888 KB
testcase_02 AC 12 ms
42,036 KB
testcase_03 AC 12 ms
41,888 KB
testcase_04 AC 12 ms
41,864 KB
testcase_05 AC 12 ms
41,932 KB
testcase_06 AC 13 ms
41,804 KB
testcase_07 AC 13 ms
41,792 KB
testcase_08 AC 12 ms
41,788 KB
testcase_09 AC 14 ms
41,808 KB
testcase_10 AC 13 ms
41,812 KB
testcase_11 AC 12 ms
41,860 KB
testcase_12 AC 13 ms
42,076 KB
testcase_13 AC 13 ms
41,884 KB
testcase_14 AC 13 ms
41,820 KB
testcase_15 AC 14 ms
41,808 KB
testcase_16 AC 14 ms
42,072 KB
testcase_17 AC 14 ms
41,988 KB
testcase_18 AC 14 ms
41,816 KB
testcase_19 AC 13 ms
41,808 KB
testcase_20 AC 14 ms
41,960 KB
testcase_21 AC 13 ms
41,812 KB
testcase_22 AC 14 ms
42,076 KB
testcase_23 AC 14 ms
41,812 KB
testcase_24 AC 177 ms
45,260 KB
testcase_25 AC 176 ms
45,224 KB
testcase_26 AC 176 ms
45,224 KB
testcase_27 AC 175 ms
45,184 KB
testcase_28 AC 175 ms
45,136 KB
testcase_29 AC 175 ms
45,252 KB
testcase_30 AC 176 ms
45,208 KB
testcase_31 AC 176 ms
45,120 KB
testcase_32 AC 176 ms
45,140 KB
testcase_33 AC 175 ms
45,256 KB
testcase_34 AC 134 ms
45,260 KB
testcase_35 AC 134 ms
45,160 KB
testcase_36 AC 135 ms
45,144 KB
testcase_37 AC 136 ms
45,140 KB
testcase_38 AC 136 ms
45,200 KB
testcase_39 AC 134 ms
45,224 KB
testcase_40 AC 134 ms
45,120 KB
testcase_41 AC 134 ms
45,284 KB
testcase_42 AC 134 ms
45,144 KB
testcase_43 AC 135 ms
45,176 KB
testcase_44 AC 13 ms
41,784 KB
testcase_45 AC 13 ms
42,052 KB
testcase_46 AC 163 ms
45,224 KB
testcase_47 AC 172 ms
45,160 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