結果
問題 | No.1012 荷物収集 |
ユーザー | micheeeeell1001 |
提出日時 | 2020-03-20 22:17:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,314 bytes |
コンパイル時間 | 1,554 ms |
コンパイル使用メモリ | 169,272 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-12-15 06:23:30 |
合計ジャッジ時間 | 6,501 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 98 ms
7,040 KB |
testcase_05 | AC | 99 ms
7,168 KB |
testcase_06 | AC | 100 ms
7,168 KB |
testcase_07 | AC | 103 ms
7,168 KB |
testcase_08 | AC | 102 ms
7,168 KB |
testcase_09 | AC | 99 ms
7,168 KB |
testcase_10 | AC | 101 ms
7,168 KB |
testcase_11 | AC | 99 ms
7,168 KB |
testcase_12 | AC | 99 ms
7,168 KB |
testcase_13 | AC | 103 ms
7,168 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 | 1 ms
6,816 KB |
ソースコード
#include<bits/stdc++.h> #include<iostream> #include<cstdio> #include<vector> #include<string> #include<algorithm> #include<map> using namespace std; #define rep(i,x) for(ll i = 0; i < (ll)(x); i++) #define rrep(i,x) for(ll i = (ll)(x)-1;0 <= i; i--) #define reps(i,x) for(ll i = 1; i < (ll)(x)+1; i++) #define rreps(i,x) for(ll i = (ll)(x); 1 <= i; i--) #define debug(x) cerr << #x << ": " << (x) << "\n"; #define all(x) (x).begin(), (x).end() typedef long long ll; typedef long double ld; typedef pair<int,int> P; typedef pair<ll,ll> Pll; typedef vector<ll> vl; typedef vector<vector<ll>> vvl; typedef vector<vector<vector<ll>>> vvvl; const ll INF = numeric_limits<ll>::max()/4; const int n_max = 1e5+10; int main(){ ll n,q; cin >> n >> q; vector<ll> a(n),b(n); rep(i,n)cin >> a[i] >> b[i]; vector<ll> sum_ab(n+1), sum_b(n+1); rep(i,n){ sum_ab[i+1] = sum_ab[i] + a[i] * b[i]; sum_b[i+1] = sum_b[i] + b[i]; } vector<ll> x(q); rep(i,q) cin >> x[i]; rep(i,q){ ll id = lower_bound(all(a), x[i]) - a.begin(); // debug(id); ll ans = 0; ans -= sum_ab[id] - sum_ab[0]; ans += sum_ab[n] - sum_ab[id]; ans += x[i] * (sum_b[id] - sum_b[0]); ans -= x[i] * (sum_b[n] - sum_b[id]); cout << ans << "\n"; } }