結果

問題 No.1012 荷物収集
ユーザー Konton7Konton7
提出日時 2020-03-20 23:59:37
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 228 ms / 2,000 ms
コード長 3,056 bytes
コンパイル時間 2,652 ms
コンパイル使用メモリ 211,344 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-12-15 21:42:32
合計ジャッジ時間 9,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 220 ms
7,932 KB
testcase_05 AC 218 ms
7,928 KB
testcase_06 AC 217 ms
7,932 KB
testcase_07 AC 226 ms
7,936 KB
testcase_08 AC 223 ms
7,804 KB
testcase_09 AC 228 ms
7,932 KB
testcase_10 AC 219 ms
7,932 KB
testcase_11 AC 225 ms
7,936 KB
testcase_12 AC 217 ms
7,928 KB
testcase_13 AC 225 ms
7,932 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 3 ms
6,816 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,824 KB
testcase_24 AC 165 ms
6,820 KB
testcase_25 AC 204 ms
7,364 KB
testcase_26 AC 89 ms
6,988 KB
testcase_27 AC 21 ms
6,820 KB
testcase_28 AC 191 ms
7,552 KB
testcase_29 AC 84 ms
7,744 KB
testcase_30 AC 189 ms
7,912 KB
testcase_31 AC 114 ms
6,816 KB
testcase_32 AC 77 ms
6,820 KB
testcase_33 AC 129 ms
6,816 KB
testcase_34 AC 144 ms
6,820 KB
testcase_35 AC 164 ms
7,196 KB
testcase_36 AC 143 ms
6,816 KB
testcase_37 AC 78 ms
7,512 KB
testcase_38 AC 170 ms
6,816 KB
testcase_39 AC 68 ms
6,820 KB
testcase_40 AC 90 ms
6,816 KB
testcase_41 AC 224 ms
7,696 KB
testcase_42 AC 123 ms
6,816 KB
testcase_43 AC 153 ms
6,920 KB
testcase_44 AC 2 ms
6,816 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