結果

問題 No.704 ゴミ拾い Medium
ユーザー chocoruskchocorusk
提出日時 2018-11-09 10:36:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 462 ms / 1,500 ms
コード長 1,347 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 96,000 KB
実行使用メモリ 26,916 KB
最終ジャッジ日時 2024-11-21 05:09:22
合計ジャッジ時間 12,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
12,352 KB
testcase_01 AC 7 ms
12,484 KB
testcase_02 AC 7 ms
12,484 KB
testcase_03 AC 8 ms
12,476 KB
testcase_04 AC 7 ms
12,480 KB
testcase_05 AC 7 ms
12,480 KB
testcase_06 AC 8 ms
12,348 KB
testcase_07 AC 7 ms
12,348 KB
testcase_08 AC 7 ms
12,480 KB
testcase_09 AC 7 ms
12,480 KB
testcase_10 AC 7 ms
12,476 KB
testcase_11 AC 7 ms
12,480 KB
testcase_12 AC 7 ms
12,476 KB
testcase_13 AC 7 ms
12,604 KB
testcase_14 AC 9 ms
12,476 KB
testcase_15 AC 8 ms
12,352 KB
testcase_16 AC 8 ms
12,352 KB
testcase_17 AC 8 ms
12,604 KB
testcase_18 AC 9 ms
12,480 KB
testcase_19 AC 8 ms
12,476 KB
testcase_20 AC 8 ms
12,352 KB
testcase_21 AC 8 ms
12,480 KB
testcase_22 AC 7 ms
12,608 KB
testcase_23 AC 8 ms
12,348 KB
testcase_24 AC 430 ms
26,728 KB
testcase_25 AC 430 ms
26,736 KB
testcase_26 AC 431 ms
26,792 KB
testcase_27 AC 449 ms
26,724 KB
testcase_28 AC 433 ms
26,720 KB
testcase_29 AC 437 ms
26,708 KB
testcase_30 AC 436 ms
26,832 KB
testcase_31 AC 429 ms
26,916 KB
testcase_32 AC 430 ms
26,784 KB
testcase_33 AC 444 ms
26,696 KB
testcase_34 AC 392 ms
26,860 KB
testcase_35 AC 390 ms
26,916 KB
testcase_36 AC 395 ms
26,728 KB
testcase_37 AC 389 ms
26,636 KB
testcase_38 AC 387 ms
26,800 KB
testcase_39 AC 399 ms
26,708 KB
testcase_40 AC 396 ms
26,724 KB
testcase_41 AC 387 ms
26,748 KB
testcase_42 AC 378 ms
26,840 KB
testcase_43 AC 380 ms
26,728 KB
testcase_44 AC 7 ms
12,480 KB
testcase_45 AC 6 ms
12,480 KB
testcase_46 AC 462 ms
26,748 KB
testcase_47 AC 443 ms
26,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <random>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
const int MAX_N=1<<19;
const ll INF=1e16;
int m;
ll dat[2][2*MAX_N-1];
 
void init(int m_){
	m=1;
	while(m<m_) m*=2;
	for(int i=0; i<2*m-1; i++){
		dat[0][i]=INF;
		dat[1][i]=INF;
	}
}
 
void update(int t, int k, ll a){
	k+=m-1;
	dat[t][k]=a;
	while(k>0){
		k=(k-1)/2;
		dat[t][k]=min(dat[t][k*2+1], dat[t][k*2+2]);
	}
}

ll query(int t, int a, int b, int k, int l, int r){
	if(r<=a || b<=l) return INF;
	if(a<=l && r<=b){
		return dat[t][k];
	}else{
		ll vl=query(t, a, b, k*2+1, l, (l+r)/2);
		ll vr=query(t, a, b, k*2+2, (l+r)/2, r);
		return min(vl, vr);
	}
}

int main()
{
	int n;
	cin>>n;
	ll a[300001], x[300001], y[300001];
	for(int i=1; i<=n; i++) cin>>a[i];
	for(int i=1; i<=n; i++) cin>>x[i];
	for(int i=1; i<=n; i++) cin>>y[i];
	ll dp=0;
	int i0=1;
	init(n+1);
	for(int i=1; i<=n; i++){
		while(x[i0]<a[i] && i0<=n) i0++;
		update(0, i, y[i]-x[i]+dp);
		update(1, i, y[i]+x[i]+dp);
		dp=min(a[i]+query(0, 0, i0, 0, 0, m), -a[i]+query(1, i0, n+1, 0, 0, m));
	}
	cout<<dp<<endl;
	return 0;
}
0