結果

問題 No.2169 To Arithmetic
ユーザー first_vilfirst_vil
提出日時 2022-08-21 18:25:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 2,527 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 211,264 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-04-29 05:04:53
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 31 ms
5,376 KB
testcase_10 AC 49 ms
7,424 KB
testcase_11 AC 64 ms
5,504 KB
testcase_12 AC 35 ms
6,528 KB
testcase_13 AC 79 ms
7,936 KB
testcase_14 AC 41 ms
5,632 KB
testcase_15 AC 41 ms
7,168 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 82 ms
5,376 KB
testcase_18 AC 40 ms
5,376 KB
testcase_19 AC 130 ms
7,808 KB
testcase_20 AC 131 ms
7,808 KB
testcase_21 AC 130 ms
7,808 KB
testcase_22 AC 129 ms
7,808 KB
testcase_23 AC 129 ms
7,808 KB
testcase_24 AC 67 ms
7,808 KB
testcase_25 AC 81 ms
5,376 KB
testcase_26 AC 73 ms
7,936 KB
testcase_27 AC 81 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// clang-format off
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> using V = vector<T>;
using VI = V<int>;
using VL = V<ll>;
#define overload4(_1,_2,_3,_4,name,...) name
#define rep1(n) for(ll i=0;i<(n);++i)
#define rep2(i,n) for(ll i=0;i<(n);++i)
#define rep3(i,a,b) for(ll i=(a);i<(b);++i)
#define rep4(i,a,b,c) for(ll i=(a);i<(b);i+=(c))
#define rep(...) overload4(__VA_ARGS__,rep4,rep3,rep2,rep1)(__VA_ARGS__)
#define all(a) a.begin(),a.end()
constexpr ll INF = 1000000000;
constexpr ll LLINF = 1LL << 61;
template<class T> inline bool chmin(T& a, const T& b) { if (a > b) { a = b; return true; }return false; }
inline void init() { cin.tie(nullptr); cout.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); }
template<class T> inline istream& operator>>(istream& is, V<T>& v) { for (auto& a : v)is >> a; return is; }
// clang-format on

using pll = pair<ll, ll>;
ll cross(pll a, pll b) { return a.first * b.second - a.second * b.first; }
int ccw(pll a, pll b, pll c) {
    b.first -= a.first;
    b.second -= a.second;
    c.first -= a.first;
    c.second -= a.second;
    if (cross(b, c) == 0) return 0;
    return cross(b, c) > 0 ? 1 : -1;
}

int main() {
    init();

    int N, Q;
    cin >> N >> Q;
    VL A(N);
    cin >> A;

    // Bをソートして累積和を用意する
    VL B(N - 1);
    rep(i, N - 1) B[i] = A[i + 1] - A[i];
    sort(all(B));
    VL C(N);
    rep(i, N - 1) C[i + 1] = C[i] + B[i];

    // 上側凸包を求める
    V<pll> P;
    int j = 0;
    rep(i, N) {
        while (2 <= j && ccw(P[j - 2], P[j - 1], pll(i, A[i])) >= 0) {
            --j;
            P.pop_back();
        }
        P.emplace_back(i, A[i]);
        ++j;
    }
    V<pll> D;  // 傾きdy/dxを(dx,dy)のペアとして保持する
    rep(i, P.size() - 1) {
        ll dx = P[i + 1].first - P[i].first;
        ll dy = P[i + 1].second - P[i].second;
        D.emplace_back(dx, dy);
    }
    D.emplace_back(1, -INF);

    while (Q--) {
        ll d;
        cin >> d;

        int ng = -1, ok = (int)D.size() - 1;
        while (ok - ng > 1) {
            int mid = ok + ng >> 1;
            if (D[mid].second <= d * D[mid].first) ok = mid;
            // D[mid].second / D[mid].first <= d
            else ng = mid;
        }
        int x = P[ok].first;
        ll A0 = A[x] - d * (x + 1);
        ll B0 = A[0] - A0;

        int up = upper_bound(all(B), d) - B.begin();

        cout << (up * d - C[up]) + (d - B0) << "\n";
    }

    return 0;
}
0