結果
問題 | No.1012 荷物収集 |
ユーザー | Konton7 |
提出日時 | 2020-03-20 23:47:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,885 bytes |
コンパイル時間 | 2,201 ms |
コンパイル使用メモリ | 205,196 KB |
実行使用メモリ | 7,204 KB |
最終ジャッジ日時 | 2024-05-09 09:29:30 |
合計ジャッジ時間 | 9,830 ms |
ジャッジサーバーID (参考情報) |
judge1 / 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 | 230 ms
7,148 KB |
testcase_05 | AC | 228 ms
7,144 KB |
testcase_06 | AC | 233 ms
7,152 KB |
testcase_07 | AC | 231 ms
7,108 KB |
testcase_08 | AC | 229 ms
7,148 KB |
testcase_09 | AC | 226 ms
7,148 KB |
testcase_10 | AC | 217 ms
7,148 KB |
testcase_11 | AC | 222 ms
7,144 KB |
testcase_12 | AC | 238 ms
7,144 KB |
testcase_13 | AC | 227 ms
7,152 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 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 2 ms
5,376 KB |
ソースコード
#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; rep(i, n) { cin >> x_list[i] >> w_list[i]; } 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; }