結果

問題 No.703 ゴミ拾い Easy
ユーザー たこしたこし
提出日時 2018-09-27 17:59:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 263 ms / 1,500 ms
コード長 2,197 bytes
コンパイル時間 1,601 ms
コンパイル使用メモリ 164,232 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-06-10 18:35:19
合計ジャッジ時間 8,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 239 ms
12,928 KB
testcase_25 AC 251 ms
12,672 KB
testcase_26 AC 237 ms
12,800 KB
testcase_27 AC 237 ms
12,928 KB
testcase_28 AC 245 ms
12,800 KB
testcase_29 AC 236 ms
12,672 KB
testcase_30 AC 243 ms
12,800 KB
testcase_31 AC 232 ms
12,672 KB
testcase_32 AC 235 ms
12,800 KB
testcase_33 AC 236 ms
12,928 KB
testcase_34 AC 193 ms
12,928 KB
testcase_35 AC 204 ms
12,672 KB
testcase_36 AC 201 ms
12,800 KB
testcase_37 AC 198 ms
12,928 KB
testcase_38 AC 193 ms
12,928 KB
testcase_39 AC 195 ms
13,056 KB
testcase_40 AC 195 ms
12,800 KB
testcase_41 AC 193 ms
12,800 KB
testcase_42 AC 194 ms
12,928 KB
testcase_43 AC 194 ms
12,800 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 263 ms
12,672 KB
testcase_47 AC 246 ms
12,800 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cstdio>
#include <string>

using namespace std;

#define INF 100000000
#define YJ 1145141919
#define INF_INT_MAX 2147483647
#define INF_LL_MAX 9223372036854775807
#define EPS 1e-10
#define MOD 1000000007
#define Pi acos(-1)
#define LL long long
#define ULL unsigned long long
#define LD long double

#define int long long

const int MAX_N = 500005;
const int MAX_K = 500005;

template< class T >
struct ConvexHullTrickAddQueryMonotone
{
  deque< pair< T, T > > L;
  int isdec;
 
  ConvexHullTrickAddQueryMonotone() : isdec(-1) {}
 
  inline T getX(const pair< T, T > &a, const T &x)
  {
    return (a.first * x + a.second);
  }
 
  inline bool check(const pair< T, T > &a, const pair< T, T > &b, const pair< T, T > &c)
  {
    return ((b.first - a.first) * (c.second - b.second) >= (b.second - a.second) * (c.first - b.first));
  }
 
  inline bool empty() { return (L.empty()); }
 
  void add(T a, T b)
  {
    pair< T, T > line(a, b);
 
    if(!L.empty() && L.back().first == a) {
      line.second = min(line.second, L.back().second);
      L.pop_back();
    }
    while(L.size() >= 2 && check(L[L.size() - 2], L.back(), line)) L.pop_back();
    L.emplace_back(line);
 
  }
 
  T getMinimumQuery(T x)
  {
    int low = -1, high = (int) L.size() - 1;
    while(high - low > 1) {
      int mid = (low + high) >> 1;
      if((getX(L[mid], x) >= getX(L[mid + 1], x))) low = mid;
      else high = mid;
    }
    return (getX(L[high], x));
  }
 
  T getMinimumQueryMonotone(T x)
  {
    while(L.size() >= 2 && getX(L[0], x) >= getX(L[1], x)) {
      L.pop_front();
    }
    return (getX(L[0], x));
  }
 
};

int N;
int A[MAX_N];
int X[MAX_N];
int Y[MAX_N];

int dp[MAX_N];

signed main()
{
    cin >> N;
    for(int i = 0; i < N; i++) {
        cin >> A[i];
    }
    
    for(int i = 0; i < N; i++) {
        cin >> X[i];
    }
    
    for(int i = 0; i < N; i++) {
        cin >> Y[i];
    }

    ConvexHullTrickAddQueryMonotone<int> cht;

    for(int i = 1; i <= N; i++) {
        cht.add(-2*X[i-1], dp[i-1] + X[i-1]*X[i-1] + Y[i-1]*Y[i-1]);
        dp[i] = cht.getMinimumQueryMonotone(A[i-1]) + A[i-1]*A[i-1];
    }

    cout << dp[N] << endl;

    return 0;
}
0