結果

問題 No.703 ゴミ拾い Easy
ユーザー snteasntea
提出日時 2018-08-17 23:16:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 1,500 ms
コード長 3,061 bytes
コンパイル時間 1,590 ms
コンパイル使用メモリ 175,344 KB
実行使用メモリ 12,772 KB
最終ジャッジ日時 2024-06-10 18:33:55
合計ジャッジ時間 5,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 93 ms
12,760 KB
testcase_25 AC 93 ms
12,672 KB
testcase_26 AC 93 ms
12,672 KB
testcase_27 AC 94 ms
12,672 KB
testcase_28 AC 91 ms
12,492 KB
testcase_29 AC 89 ms
12,664 KB
testcase_30 AC 90 ms
12,700 KB
testcase_31 AC 91 ms
12,664 KB
testcase_32 AC 89 ms
12,692 KB
testcase_33 AC 88 ms
12,644 KB
testcase_34 AC 67 ms
12,660 KB
testcase_35 AC 70 ms
12,772 KB
testcase_36 AC 70 ms
12,704 KB
testcase_37 AC 69 ms
12,464 KB
testcase_38 AC 70 ms
12,560 KB
testcase_39 AC 69 ms
12,604 KB
testcase_40 AC 67 ms
12,672 KB
testcase_41 AC 72 ms
12,672 KB
testcase_42 AC 71 ms
12,612 KB
testcase_43 AC 69 ms
12,584 KB
testcase_44 AC 2 ms
6,940 KB
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 80 ms
12,648 KB
testcase_47 AC 79 ms
12,672 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef LOCAL111
	#define _GLIBCXX_DEBUG
#else
	#define NDEBUG
#endif
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
const long long INF = 1e15;
using namespace std;
template<typename T, typename U> ostream& operator<< (ostream& os, const pair<T,U>& p) { os << '(' << p.first << ' ' << p.second << ')'; return os; }

// #define endl '\n'
#define ALL(a)  (a).begin(),(a).end()
#define SZ(a) int((a).size())
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n)  FOR(i,0,n)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#ifdef LOCAL111
	#define DEBUG(x) cout<<#x<<": "<<(x)<<endl
	template<typename T> void dpite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
#else
	#define DEBUG(x) true
	template<typename T> void dpite(T a, T b){ return; }
#endif
#define F first
#define S second
#define SNP string::npos
#define WRC(hoge) cout << "Case #" << (hoge)+1 << ": "
template<typename T> void pite(T a, T b){ for(T ite = a; ite != b; ite++) cout << (ite == a ? "" : " ") << *ite; cout << endl;}
template<typename T> bool chmax(T& a, T b){if(a < b){a = b; return true;} return false;}
template<typename T> bool chmin(T& a, T b){if(a > b){a = b; return true;} return false;}

typedef long long int LL;
typedef unsigned long long ULL;
typedef pair<int,int> P;

void ios_init(){
	//cout.setf(ios::fixed);
	//cout.precision(12);
#ifdef LOCAL111
	return;
#endif
	ios::sync_with_stdio(false); cin.tie(0);
}

class ConvexHullTrick {
public:
	using T = long long;
	using P = pair<T, T>;
	vector<P> lines;

	ConvexHullTrick() {
		// lines.emplace_back(0, 0);
	}

	bool check(P l1, P l2, P l3) {
		if(l1 < l3) swap(l1, l3);
		return (l3.second - l2.second) * (l2.first - l1.first) 
			>= (l2.second - l1.second) * (l3.first - l2.first);	
	}

	void add(T a, T b) {
		P line(a, b);
		while(lines.size() >= 2 and check(*(lines.end()-2), lines.back(), line)) {
			lines.pop_back();
		}
		lines.emplace_back(line);
	}


	T calc(int i, T x) {
		return lines[i].first * x + lines[i].second;
	}


	T query(T x) {
		assert(lines.size() != 0);
		
		if(lines.size() == 1) {
			return calc(0, x);
		}

		int ng = 0, ok = lines.size();
		
		auto check = [&](int i) -> bool {
			if(i+1 == lines.size()) {
				return true;
			}
			return calc(i, x) < calc(i+1, x);
		};

		if(check(ng)) {
			return calc(ng, x);
		}


		while(ok-ng > 1) {
			int m = (ok+ng)/2;
			if(check(m)) {
				ok = m;
			} else {
				ng = m;
			}
		}
		return calc(ok, x);

	}
};

int main()
{
	ios_init();
	
	int n;
	
	while(cin >> n) {
		vector<LL> a(n);
		vector<LL> x(n);
		vector<LL> y(n);
		REP(i, n) cin >> a[i];
		REP(i, n) cin >> x[i];
		REP(i, n) cin >> y[i];


		ConvexHullTrick cht;

		vector<LL> dp(n+1, INF);
		dp[0] = 0;
		REP(i, n) {
			// REP(k, i+1) {
			// 	chmin(dp[i+1], dp[k] + (a[i]-x[k])*(a[i]-x[k]) + y[k]*y[k]);
			// }
			cht.add(x[i], dp[i] + x[i] * x[i] + y[i] * y[i]);
			dp[i+1] = cht.query(-2*a[i]) + a[i] * a[i];
		}

		dpite(ALL(dp));

		cout << dp[n] << endl;
	}

	return 0;
}
0