結果
問題 | No.2988 Min-Plus Convolution Query |
ユーザー | Kude |
提出日時 | 2024-12-13 01:10:39 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,989 bytes |
コンパイル時間 | 4,470 ms |
コンパイル使用メモリ | 271,220 KB |
実行使用メモリ | 22,556 KB |
最終ジャッジ日時 | 2024-12-13 01:11:50 |
合計ジャッジ時間 | 68,988 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 3 ms
14,208 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | AC | 31 ms
10,624 KB |
testcase_06 | AC | 3 ms
13,056 KB |
testcase_07 | AC | 3 ms
10,624 KB |
testcase_08 | AC | 3 ms
14,208 KB |
testcase_09 | AC | 1,474 ms
10,624 KB |
testcase_10 | AC | 99 ms
14,080 KB |
testcase_11 | AC | 7 ms
10,624 KB |
testcase_12 | AC | 230 ms
14,080 KB |
testcase_13 | AC | 1,596 ms
14,080 KB |
testcase_14 | AC | 319 ms
10,624 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 3 ms
5,248 KB |
testcase_34 | AC | 3 ms
5,248 KB |
testcase_35 | AC | 4 ms
5,248 KB |
testcase_36 | AC | 3 ms
5,248 KB |
testcase_37 | AC | 3 ms
5,248 KB |
testcase_38 | AC | 3 ms
5,248 KB |
testcase_39 | AC | 3 ms
5,248 KB |
testcase_40 | AC | 3 ms
5,248 KB |
testcase_41 | AC | 3 ms
14,208 KB |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic warning "-Wunused-function" using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; // using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; constexpr int INF = 1001001001; constexpr int M = 200010; constexpr int B = 3125; int a[M], b[M]; int ans_memo[2 * M]; bool invalid[M]; int n; void dfs(int l_ask, int r_ask, int l_a, int r_a) { if (l_ask == r_ask) return; int c_ask = (l_ask + r_ask) / 2; int mn = 2 * INF; int imn = max(l_a, c_ask - (n - 1)); for (int ia = imn, iar = min({r_a, n, c_ask + 1}); ia < iar; ia++) { if (!invalid[ia] && chmin(mn, a[ia] + b[c_ask - ia])) imn = ia; } ans_memo[c_ask] = mn; dfs(l_ask, c_ask, l_a, imn + 1); dfs(c_ask + 1, r_ask, imn, r_a); } int P[M], X[M], K[M]; } int main() { ios::sync_with_stdio(false); cin.tie(0); int q; cin >> n >> q; rep(i, n) cin >> a[i]; rep(i, n) cin >> b[i]; rep(i, q) cin >> P[i] >> X[i] >> K[i], P[i]--, K[i] -= 2; int bl = 0, br = 0; rep(iq, q) { if (iq % B == 0) { bl = iq; br = min(iq + B, q); for (int i = bl; i < br; i++) invalid[P[i]] = true; dfs(0, 2 * n - 1, 0, n); for (int i = bl; i < br; i++) invalid[P[i]] = false; } a[P[iq]] = X[iq]; int ans = ans_memo[K[iq]]; for (int i = bl; i < br; i++) { int ia = P[i], ib = K[iq] - ia; if (0 <= ib && ib < n) chmin(ans, a[ia] + b[ib]); } cout << ans << '\n'; } }