結果

問題 No.2359 A in S ?
ユーザー tsugutsugutsugutsugu
提出日時 2023-06-24 01:24:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 251,260 KB
実行使用メモリ 137,476 KB
最終ジャッジ日時 2024-07-01 05:05:36
合計ジャッジ時間 8,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
136,968 KB
testcase_01 AC 156 ms
136,960 KB
testcase_02 AC 155 ms
136,960 KB
testcase_03 AC 155 ms
136,968 KB
testcase_04 AC 199 ms
137,356 KB
testcase_05 AC 207 ms
137,348 KB
testcase_06 AC 199 ms
137,436 KB
testcase_07 AC 208 ms
137,352 KB
testcase_08 AC 210 ms
137,476 KB
testcase_09 AC 197 ms
137,348 KB
testcase_10 AC 201 ms
137,352 KB
testcase_11 AC 206 ms
137,348 KB
testcase_12 AC 198 ms
137,352 KB
testcase_13 AC 203 ms
137,348 KB
testcase_14 AC 202 ms
137,352 KB
testcase_15 AC 196 ms
137,224 KB
testcase_16 AC 199 ms
137,348 KB
testcase_17 AC 198 ms
137,352 KB
testcase_18 AC 198 ms
137,352 KB
testcase_19 AC 197 ms
137,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) 1
#endif

const int MAX = 100000 + 5;
const int B = 340;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n, m;
    cin >> n >> m;
    vector<vector<int>> A(B, vector<int>(MAX, 0));
    vector<int> cnt(MAX, 0);
    vector<int> C(m);
    for (int i = 0; i < n; i++) {
        int L, R, X, Y;
        cin >> L >> R >> X >> Y;
        int vl = L / X * X + Y;
        while (vl < L) vl += X;
        while (vl - X >= L) vl -= X;
        int vr = R / X * X + Y;
        while (vr > R) vr -= X;
        while (vr + X <= R) vr += X;
        if (X < B) {
            A[X][vl]++;
            if (vr + X <= MAX) {
                A[X][vr + X]--;
            }
        } else {
            for (int j = vl; j <= vr; j += X) {
                cnt[j]++;
            }
        }
    }

    for (int i = 0; i < m; i++) {
        cin >> C[i];
    }

    for (int i = 1; i < B; i++) {
        for (int j = 0; j < MAX; j++) {
            if (j + i < MAX) {
                A[i][j + i] += A[i][j];
            }
        }
        for (int j = 0; j < MAX; j++) {
            cnt[j] += A[i][j];
        }
    }

    for (int i = 0; i < m; i++) {
        cout << cnt[C[i]] << '\n';
    }
    
}
0