結果

問題 No.704 ゴミ拾い Medium
ユーザー nxterunxteru
提出日時 2018-11-10 22:01:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 259 ms / 1,500 ms
コード長 959 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 169,240 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-05-03 23:40:02
合計ジャッジ時間 10,150 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
20,096 KB
testcase_01 AC 13 ms
19,968 KB
testcase_02 AC 13 ms
19,968 KB
testcase_03 AC 13 ms
19,968 KB
testcase_04 AC 13 ms
20,096 KB
testcase_05 AC 15 ms
19,968 KB
testcase_06 AC 15 ms
19,968 KB
testcase_07 AC 15 ms
20,096 KB
testcase_08 AC 14 ms
19,968 KB
testcase_09 AC 15 ms
20,096 KB
testcase_10 AC 13 ms
20,096 KB
testcase_11 AC 13 ms
20,096 KB
testcase_12 AC 13 ms
19,968 KB
testcase_13 AC 13 ms
19,968 KB
testcase_14 AC 13 ms
20,096 KB
testcase_15 AC 13 ms
19,968 KB
testcase_16 AC 13 ms
19,968 KB
testcase_17 AC 14 ms
19,968 KB
testcase_18 AC 14 ms
20,096 KB
testcase_19 AC 13 ms
19,968 KB
testcase_20 AC 13 ms
19,968 KB
testcase_21 AC 14 ms
20,096 KB
testcase_22 AC 13 ms
19,968 KB
testcase_23 AC 15 ms
19,968 KB
testcase_24 AC 213 ms
29,440 KB
testcase_25 AC 259 ms
29,312 KB
testcase_26 AC 235 ms
29,312 KB
testcase_27 AC 224 ms
29,312 KB
testcase_28 AC 242 ms
29,312 KB
testcase_29 AC 210 ms
29,312 KB
testcase_30 AC 230 ms
29,312 KB
testcase_31 AC 244 ms
29,312 KB
testcase_32 AC 219 ms
29,312 KB
testcase_33 AC 228 ms
29,312 KB
testcase_34 AC 222 ms
29,312 KB
testcase_35 AC 213 ms
29,312 KB
testcase_36 AC 220 ms
29,440 KB
testcase_37 AC 223 ms
29,312 KB
testcase_38 AC 218 ms
29,312 KB
testcase_39 AC 218 ms
29,312 KB
testcase_40 AC 215 ms
29,440 KB
testcase_41 AC 217 ms
29,312 KB
testcase_42 AC 215 ms
29,312 KB
testcase_43 AC 210 ms
29,312 KB
testcase_44 AC 12 ms
19,968 KB
testcase_45 AC 13 ms
19,968 KB
testcase_46 AC 233 ms
29,312 KB
testcase_47 AC 245 ms
29,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define INF 100000000000000000
struct SEG{
	ll seg[1<<20];
	SEG(void){
		for(int i=0;i<1<<20;i++)seg[i]=INF;
	}
	void up(int a,ll x){
		a+=(1<<19)-1;
		seg[a]=x;
		while(a>0){
			a=(a-1)/2;
			seg[a]=min(seg[a*2+1],seg[a*2+2]);
		}
	}
	ll que(int a,int b,int l,int r,int k){
		if(b<l||r<a)return INF;
		if(a<=l&&r<=b)return seg[k];
		return min(que(a,b,l,(l+r-1)/2,k*2+1),que(a,b,(l+r+1)/2,r,k*2+2));
	}
};
ll n,x[300005],y[300005],a[300005],dp[300005];
SEG m,p;
int main(void){
    scanf("%lld",&n);
    for(int i=1;i<=n;i++)scanf("%lld",a+i);
    for(int i=1;i<=n;i++)scanf("%lld",x+i);
    for(int i=1;i<=n;i++)scanf("%lld",y+i);
    for(int i=1;i<=n;i++){
		m.up(i,dp[i-1]-x[i]+y[i]);
		p.up(i,dp[i-1]+x[i]+y[i]);
		int o=lower_bound(x,x+n+1,a[i])-x;
		dp[i]=m.que(1,min(i,o-1),0,(1<<19)-1,0)+a[i];
		if(o<=i)dp[i]=min(dp[i],p.que(o,i,0,(1<<19)-1,0)-a[i]);
	}
	printf("%lld\n",dp[n]);
}
0