結果

問題 No.703 ゴミ拾い Easy
ユーザー chocoruskchocorusk
提出日時 2018-11-09 10:07:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 255 ms / 1,500 ms
コード長 1,233 bytes
コンパイル時間 928 ms
コンパイル使用メモリ 101,376 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-06-10 18:36:41
合計ジャッジ時間 8,577 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
10,496 KB
testcase_01 AC 5 ms
10,496 KB
testcase_02 AC 6 ms
10,496 KB
testcase_03 AC 6 ms
10,368 KB
testcase_04 AC 6 ms
10,240 KB
testcase_05 AC 6 ms
10,368 KB
testcase_06 AC 5 ms
10,368 KB
testcase_07 AC 6 ms
10,368 KB
testcase_08 AC 5 ms
10,368 KB
testcase_09 AC 6 ms
10,368 KB
testcase_10 AC 5 ms
10,368 KB
testcase_11 AC 5 ms
10,368 KB
testcase_12 AC 5 ms
10,368 KB
testcase_13 AC 5 ms
10,368 KB
testcase_14 AC 6 ms
10,368 KB
testcase_15 AC 6 ms
10,368 KB
testcase_16 AC 7 ms
10,496 KB
testcase_17 AC 6 ms
10,240 KB
testcase_18 AC 7 ms
10,368 KB
testcase_19 AC 7 ms
10,368 KB
testcase_20 AC 7 ms
10,368 KB
testcase_21 AC 7 ms
10,368 KB
testcase_22 AC 7 ms
10,496 KB
testcase_23 AC 7 ms
10,496 KB
testcase_24 AC 237 ms
10,240 KB
testcase_25 AC 235 ms
10,368 KB
testcase_26 AC 234 ms
10,368 KB
testcase_27 AC 235 ms
10,368 KB
testcase_28 AC 238 ms
10,240 KB
testcase_29 AC 238 ms
10,496 KB
testcase_30 AC 237 ms
10,496 KB
testcase_31 AC 233 ms
10,368 KB
testcase_32 AC 238 ms
10,368 KB
testcase_33 AC 239 ms
10,240 KB
testcase_34 AC 194 ms
10,368 KB
testcase_35 AC 191 ms
10,368 KB
testcase_36 AC 193 ms
10,496 KB
testcase_37 AC 197 ms
10,240 KB
testcase_38 AC 198 ms
10,496 KB
testcase_39 AC 196 ms
10,368 KB
testcase_40 AC 198 ms
10,368 KB
testcase_41 AC 199 ms
10,368 KB
testcase_42 AC 192 ms
10,368 KB
testcase_43 AC 200 ms
10,368 KB
testcase_44 AC 7 ms
10,240 KB
testcase_45 AC 6 ms
10,368 KB
testcase_46 AC 255 ms
10,240 KB
testcase_47 AC 247 ms
10,368 KB
testcase_48 AC 7 ms
10,240 KB
testcase_49 AC 7 ms
10,368 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;
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];
	deque<P> line;
	ll dp=0;
	for(int i=1; i<=n; i++){
		ll a0=-2*x[i], b0=x[i]*x[i]+y[i]*y[i]+dp;
		if(!(line.size()>=1 && line.back().first==a0 && line.back().second<=b0)){
			while(line.size()>1){
				ll a1=line[line.size()-1].first, b1=line[line.size()-1].second;
				ll a2=line[line.size()-2].first, b2=line[line.size()-2].second;
				if((b1-b2)*(a1-a0)<(b0-b1)*(a2-a1)) break;
				line.pop_back();
			}
			line.push_back(P(a0, b0));
		}
		while(line.size()>1){
			ll a1=line[0].first, b1=line[0].second;
			ll a2=line[1].first, b2=line[1].second;
			if(a1*a[i]+b1<a2*a[i]+b2) break;
			line.pop_front();
		}
		ll a1=line[0].first, b1=line[0].second;
		dp=a1*a[i]+b1+a[i]*a[i];
	}
	cout<<dp<<endl;
	return 0;
}
0