結果

問題 No.703 ゴミ拾い Easy
ユーザー zaki_johozaki_joho
提出日時 2019-10-24 01:19:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 1,500 ms
コード長 2,423 bytes
コンパイル時間 1,662 ms
コンパイル使用メモリ 179,248 KB
実行使用メモリ 17,828 KB
最終ジャッジ日時 2024-06-10 18:46:52
合計ジャッジ時間 8,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,368 KB
testcase_01 AC 4 ms
8,452 KB
testcase_02 AC 4 ms
8,360 KB
testcase_03 AC 4 ms
8,476 KB
testcase_04 AC 4 ms
8,488 KB
testcase_05 AC 3 ms
8,340 KB
testcase_06 AC 3 ms
8,436 KB
testcase_07 AC 4 ms
8,488 KB
testcase_08 AC 4 ms
8,320 KB
testcase_09 AC 3 ms
8,364 KB
testcase_10 AC 3 ms
8,336 KB
testcase_11 AC 4 ms
8,336 KB
testcase_12 AC 4 ms
8,384 KB
testcase_13 AC 3 ms
8,336 KB
testcase_14 AC 4 ms
8,424 KB
testcase_15 AC 4 ms
8,348 KB
testcase_16 AC 4 ms
8,364 KB
testcase_17 AC 4 ms
8,460 KB
testcase_18 AC 4 ms
8,424 KB
testcase_19 AC 4 ms
8,448 KB
testcase_20 AC 4 ms
8,496 KB
testcase_21 AC 4 ms
8,344 KB
testcase_22 AC 4 ms
8,344 KB
testcase_23 AC 4 ms
8,424 KB
testcase_24 AC 247 ms
17,732 KB
testcase_25 AC 242 ms
17,828 KB
testcase_26 AC 237 ms
17,760 KB
testcase_27 AC 249 ms
17,676 KB
testcase_28 AC 249 ms
17,756 KB
testcase_29 AC 243 ms
17,760 KB
testcase_30 AC 237 ms
17,704 KB
testcase_31 AC 236 ms
17,728 KB
testcase_32 AC 240 ms
17,712 KB
testcase_33 AC 247 ms
17,780 KB
testcase_34 AC 195 ms
17,696 KB
testcase_35 AC 205 ms
17,780 KB
testcase_36 AC 201 ms
17,660 KB
testcase_37 AC 200 ms
17,808 KB
testcase_38 AC 203 ms
17,728 KB
testcase_39 AC 201 ms
17,716 KB
testcase_40 AC 198 ms
17,680 KB
testcase_41 AC 194 ms
17,672 KB
testcase_42 AC 203 ms
17,668 KB
testcase_43 AC 197 ms
17,812 KB
testcase_44 AC 4 ms
8,308 KB
testcase_45 AC 5 ms
8,380 KB
testcase_46 AC 260 ms
17,776 KB
testcase_47 AC 251 ms
17,816 KB
testcase_48 AC 5 ms
8,420 KB
testcase_49 AC 4 ms
8,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

class LiChaoTree
{
	using T = long long;
	using Line = std::pair<T, T>;
	const T inf = 1e15;
	// 最小化?
	bool isMinimum;
	int n;
	// 各区間には, その区間で最小(or最大)を取りうる直線を保持する
	std::vector<Line> node;
	std::vector<int> usd;

	static inline T f(const Line &line, T x) { return line.first * x + line.second; }

	// [l, r) に Line を追加, 現在ノードk
	void add(int k, int l, int r, Line line)
	{
		while (r - l > 0)
		{
			if (!usd[k])
			{
				node[k] = line;
				usd[k] = true;
				return;
			}
			int m = (l + r) / 2;
			bool left = (f(line, l) < f(node[k], l));
			bool mid = (f(line, m) < f(node[k], m));
			bool right = (f(line, r) < f(node[k], r));
			if (!isMinimum)
			{
				left = !left;
				mid = !mid;
				right = !right;
			}
			if (left && right)
			{
				node[k] = line;
				return;
			}
			if (!left && !right)
			{
				return;
			}
			if (mid)
			{
				swap(line, node[k]);
			}
			if (left != mid)
			{
				k = 2 * k + 1;
				r = m;
			}
			else
			{
				k = 2 * k + 2;
				l = m;
			}
		}
	}

public:
	// [0, n] 用の木を作る
	LiChaoTree(int _n, bool isMin = true) : isMinimum(isMin)
	{
		n = 1;
		while (n < _n)
			n *= 2;
		node.resize(2 * n - 1, Line(0, isMin ? inf : -inf));
		usd.resize(2 * n - 1, false);
	}
	// ax + b を追加する
	void add(T a, T b)
	{
		add(0, 0, n, Line(a, b));
		return;
	}
	T get(T x)
	{
		int k = x + (n - 1);
		T ret = usd[k] ? f(node[k], x) : (isMinimum ? inf : -inf);
		while (k > 0)
		{
			k = (k - 1) / 2;
			if (usd[k])
			{
				ret = isMinimum ? std::min(ret, f(node[k], x)) : std::max(ret, f(node[k], x));
			}
		}
		return ret;
	}
};


// https://yukicoder.me/submissions/392545
void solve_yukicoder_703()
{
    using ll = long long;
    const ll inf = 1e15;
    int n;
    cin >> n;
    vector<ll> a(n+1), x(n+1), y(n+1);
    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];
    }
    LiChaoTree cht(100010);
    vector<ll> dp(n + 1, inf);
    dp[0] = 0;
    for (int i = 1; i <= n; i++)
    {
        cht.add(-2 * x[i], x[i] * x[i] + y[i] * y[i] + dp[i-1]);
        dp[i] = cht.get(a[i]) + a[i] * a[i];
        //cerr << dp[i] << endl;
    }
    cout << dp[n] << endl;
}

int main()
{
    solve_yukicoder_703();
}
0