結果
問題 | No.703 ゴミ拾い Easy |
ユーザー | leaf_1415 |
提出日時 | 2019-09-25 20:03:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,818 bytes |
コンパイル時間 | 720 ms |
コンパイル使用メモリ | 69,040 KB |
実行使用メモリ | 16,768 KB |
最終ジャッジ日時 | 2024-09-22 14:03:05 |
合計ジャッジ時間 | 6,589 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
13,408 KB |
testcase_01 | AC | 5 ms
13,412 KB |
testcase_02 | AC | 5 ms
13,536 KB |
testcase_03 | AC | 5 ms
13,412 KB |
testcase_04 | AC | 5 ms
13,412 KB |
testcase_05 | AC | 6 ms
13,412 KB |
testcase_06 | AC | 5 ms
13,536 KB |
testcase_07 | AC | 5 ms
13,416 KB |
testcase_08 | AC | 5 ms
13,412 KB |
testcase_09 | AC | 5 ms
13,416 KB |
testcase_10 | AC | 6 ms
13,540 KB |
testcase_11 | AC | 5 ms
13,412 KB |
testcase_12 | AC | 5 ms
13,416 KB |
testcase_13 | AC | 5 ms
13,416 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 84 ms
16,584 KB |
testcase_35 | AC | 85 ms
16,536 KB |
testcase_36 | AC | 83 ms
16,584 KB |
testcase_37 | AC | 85 ms
16,716 KB |
testcase_38 | AC | 84 ms
16,516 KB |
testcase_39 | AC | 83 ms
16,588 KB |
testcase_40 | AC | 85 ms
16,740 KB |
testcase_41 | AC | 85 ms
16,632 KB |
testcase_42 | AC | 85 ms
16,644 KB |
testcase_43 | AC | 85 ms
16,552 KB |
testcase_44 | AC | 6 ms
13,408 KB |
testcase_45 | AC | 5 ms
13,416 KB |
testcase_46 | AC | 95 ms
16,648 KB |
testcase_47 | AC | 94 ms
16,608 KB |
testcase_48 | WA | - |
testcase_49 | WA | - |
ソースコード
#include <iostream> #include <utility> #include <vector> #define llint long long #define inf 1e18 using namespace std; typedef pair<llint, llint> P; struct LiChaoTree{ int size; vector<P> seg; LiChaoTree(){} LiChaoTree(int size){ this->size = size; seg.resize(1<<(size+1)); } void init() { for(int i = 0; i < (1<<(size+1)); i++) seg[i] = make_pair(0, inf); } llint calc(P f, llint x) { return f.first * x + f.second; } llint query(int x) { int i = x + (1 << size); llint ret = inf; while(i >= 1){ ret = min(ret, calc(seg[i], x)); i /= 2; } return ret; } void add(int k, int l, int r, P f) { int m = (l+r)/2; if(calc(f, m) < calc(seg[k], m)) swap(seg[k], f); bool L = (calc(f, l) < calc(seg[k], l)), R = (calc(f, r) < calc(seg[k], r)); if(L == R) return; if(L) add(k*2, l, m, f); if(R) add(k*2, m+1, r, f); } void addSegment(int a, int b, int k, int l, int r, P f) { if(b < l || r < a) return; if(a <= l && r <= b){ add(k, l, r, f); return; } addSegment(a, b, k*2, l, (l+r)/2, f); addSegment(a, b, k*2+1, (l+r)/2+1, r, f); } void addSegment(int a, int b, llint p, llint q) { addSegment(a, b, 1, 0, (1<<size)-1, make_pair(p, q)); } void addLine(llint p, llint q) { return addSegment(0, (1<<size)-1, p, q); } }; llint n; llint a[300005], x[300005], y[300005]; llint dp[300005]; LiChaoTree lct(17); int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> n; for(int i = n; i >= 1; i--) cin >> a[i]; for(int i = n; i >= 1; i--) cin >> x[i]; for(int i = n; i >= 1; i--) cin >> y[i]; lct.init(); dp[0] = 0; lct.addLine(-2*a[1], a[1]*a[1]+dp[0]); for(int i = 1; i <= n; i++){ dp[i] = lct.query(x[i]) + x[i]*x[i] + y[i]*y[i]; lct.addLine(-2*a[i+1], a[i+1]*a[i+1]+dp[i]); } cout << dp[n] << endl; return 0; }