結果

問題 No.2988 Min-Plus Convolution Query
ユーザー 👑 hos.lyrichos.lyric
提出日時 2024-12-13 00:29:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,913 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 120,180 KB
実行使用メモリ 157,324 KB
最終ジャッジ日時 2024-12-13 00:30:12
合計ジャッジ時間 55,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
111,276 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 38 ms
16,892 KB
testcase_06 AC 2 ms
102,224 KB
testcase_07 AC 2 ms
13,764 KB
testcase_08 AC 2 ms
10,496 KB
testcase_09 AC 76 ms
27,004 KB
testcase_10 AC 341 ms
10,356 KB
testcase_11 AC 8 ms
10,880 KB
testcase_12 AC 26 ms
114,236 KB
testcase_13 AC 459 ms
44,800 KB
testcase_14 AC 32 ms
115,488 KB
testcase_15 AC 849 ms
70,656 KB
testcase_16 TLE -
testcase_17 AC 349 ms
58,624 KB
testcase_18 AC 318 ms
157,324 KB
testcase_19 AC 233 ms
49,664 KB
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 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
111,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <sstream>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;

using Int = long long;

template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; };
template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; }
template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; }
template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; }
template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; }
#define COLOR(s) ("\x1b[" s "m")


constexpr Int INF = 1001001001001001001LL;

int N, Q;
vector<Int> A, B;
vector<int> P, K;
vector<Int> X;

int main() {
  for (; ~scanf("%d%d", &N, &Q); ) {
    A.resize(N); for (int i = 0; i < N; ++i) scanf("%lld", &A[i]);
    B.resize(N); for (int i = 0; i < N; ++i) scanf("%lld", &B[i]);
    P.resize(Q);
    K.resize(Q);
    X.resize(Q);
    for (int q = 0; q < Q; ++q) {
      scanf("%d%lld%d", &P[q], &X[q], &K[q]);
      P[q] -= 1;
      K[q] -= 2;
    }
    
    int segN;
    for (segN = 1; segN < Q; segN <<= 1) {}
    // (i, c): k -> c + B[k-i]
    vector<vector<pair<int, Int>>> icss(segN << 1);
    
    vector<vector<pair<int, Int>>> qxss(N);
    for (int q = 0; q < Q; ++q) {
      qxss[P[q]].emplace_back(q, X[q]);
    }
    for (int i = 0; i < N; ++i) {
      const auto &qxs = qxss[i];
      const int len = qxs.size();
      for (int j = 0; j <= len; ++j) {
        int a = (j - 1 >= 0) ? qxs[j - 1].first : 0;
        int b = (j < len) ? qxs[j].first : Q;
        const Int c = (j - 1 >= 0) ? qxs[j - 1].second : A[i];
// cerr<<i<<" "<<a<<" "<<b<<" "<<c<<endl;
        for (a += segN, b += segN; a < b; a >>= 1, b >>= 1) {
          if (a & 1) icss[a++].emplace_back(i, c);
          if (b & 1) icss[--b].emplace_back(i, c);
        }
      }
    }
    
    // TODO
    vector<Int> ans(Q, INF);
    for (int q = 0; q < Q; ++q) {
      for (int a = segN + q; a; a >>= 1) {
        for (const auto &ic : icss[a]) {
          const int j = K[q] - ic.first;
          if (0 <= j && j < N) {
            chmin(ans[q], ic.second + B[j]);
          }
        }
      }
    }
    
    for (int q = 0; q < Q; ++q) {
      printf("%lld\n", ans[q]);
    }
  }
  return 0;
}
0