結果

問題 No.1012 荷物収集
ユーザー Konton7Konton7
提出日時 2020-03-20 23:59:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 3,056 bytes
コンパイル時間 2,856 ms
コンパイル使用メモリ 211,036 KB
実行使用メモリ 8,060 KB
最終ジャッジ日時 2024-05-09 09:49:57
合計ジャッジ時間 10,432 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 228 ms
7,932 KB
testcase_05 AC 228 ms
7,936 KB
testcase_06 AC 234 ms
7,932 KB
testcase_07 AC 227 ms
7,932 KB
testcase_08 AC 231 ms
8,060 KB
testcase_09 AC 232 ms
7,844 KB
testcase_10 AC 224 ms
7,832 KB
testcase_11 AC 232 ms
7,936 KB
testcase_12 AC 231 ms
7,936 KB
testcase_13 AC 234 ms
7,932 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 181 ms
5,668 KB
testcase_25 AC 217 ms
7,232 KB
testcase_26 AC 95 ms
6,992 KB
testcase_27 AC 23 ms
5,376 KB
testcase_28 AC 201 ms
7,492 KB
testcase_29 AC 82 ms
7,744 KB
testcase_30 AC 202 ms
7,904 KB
testcase_31 AC 119 ms
5,376 KB
testcase_32 AC 80 ms
5,376 KB
testcase_33 AC 138 ms
5,376 KB
testcase_34 AC 154 ms
5,376 KB
testcase_35 AC 174 ms
7,192 KB
testcase_36 AC 158 ms
5,376 KB
testcase_37 AC 79 ms
7,564 KB
testcase_38 AC 176 ms
5,844 KB
testcase_39 AC 73 ms
5,376 KB
testcase_40 AC 97 ms
5,376 KB
testcase_41 AC 241 ms
7,692 KB
testcase_42 AC 120 ms
5,376 KB
testcase_43 AC 145 ms
7,048 KB
testcase_44 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
using VI = vector<int>;
using VL = vector<ll>;
using PII = std::pair<int, int>;
using PLL = std::pair<ll, ll>;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repr(i, n) for (int i = (int)(n)-1; i >= 0; i--)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
#define allpt(v) (v).begin(), (v).end()
#define allpt_c(v) (v).cbegin(), (v).cend()
#define allpt_r(v) (v).rbegin(), (v).rend()

const int mod = 1e9 + 7;
const string wsp = " ";
const string tb = "\t";
const string rt = "\n";

template <typename T>
void show1dvec(const vector<T> &v)
{
    if (v.size() == 0)
        return;
    int n = v.size() - 1;
    rep(i, n) cout << v[i] << wsp;
    cout << v[n] << rt;
    return;
}

template <typename T>
void show2dvec(const vector<vector<T>> &v)
{
    int n = v.size();
    rep(i, n) show1dvec(v[i]);
}

template <typename T, typename S>
void show1dpair(const vector<pair<T, S>> &v)
{
    int n = v.size();
    rep(i, n) cout << v[i].first << wsp << v[i].second << rt;
    return;
}

template <typename T, typename S>
void pairzip(const vector<pair<T, S>> &v, vector<T> &t, vector<T> &s)
{
    int n = v.size();
    rep(i, n)
    {
        t.push_back(v[i].first);
        s.push_back(v[i].second);
    }
    return;
}

template <typename T>
void maxvec(vector<T> &v)
{
    T s = v[0];
    int n = v.size();
    rep(i, n - 1)
    {
        if (s > v[i + 1])
        {
            v[i + 1] = s;
        }
        s = v[i + 1];
    }
}

template <typename T, typename S>
bool myfind(T t, S s)
{
    return find(t.cbegin(), t.cend(), s) != t.cend();
}



void cumsum(VL &v)
{
    ll s = 0;
    rep(i, v.size())
    {
        s += v[i];
        if (s >= mod) s -= mod;
        v[i] = s;
    }
}

int main()
{


#ifdef DEBUG
    cout << "DEBUG MODE" << endl;
    ifstream in("input.txt"); //for debug
    cin.rdbuf(in.rdbuf());    //for debug
#endif

    int n, q, qi;
    cin >> n >> q;
    ll totalw, costx0 = 0;
    VL diff, x_list(n), w_list(n), cost_in_x;
    vector<PII> xw_list(n);
    rep(i, n)
    {
        cin >> xw_list[i].first >> xw_list[i].second;
    }
    sort(allpt(xw_list));
    rep(i, n)
    {
        x_list[i] = xw_list[i].first;
        w_list[i] = xw_list[i].second;
    }
    totalw = -accumulate(allpt_c(w_list), 0ll);
    diff.push_back(totalw);
    rep(i, n)
    {
        totalw += 2 * w_list[i];
        diff.push_back(totalw);
    }
    rep(i, n)
    {
        costx0 += (x_list[i] - x_list[0]) * w_list[i];
    }
    cost_in_x.push_back(costx0);
    rep2(i, 1, n)
    {
        costx0 += (x_list[i] - x_list[i - 1]) * diff[i];
        cost_in_x.push_back(costx0);
    }


    rep(i, q)
    {
        cin >> qi;
        if (x_list[0] > qi)
            cout << -diff[0] * (x_list[0] - qi) + cost_in_x[0] << rt;
        else
        {
            auto a = upper_bound(allpt_c(x_list), qi) - x_list.cbegin();
            cout << diff[a] * (qi - x_list[a - 1]) + cost_in_x[a - 1] << rt;
        }
        
        
    }


    return 0;
}
0