結果

問題 No.2359 A in S ?
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-07-09 07:46:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 519 ms / 2,000 ms
コード長 1,234 bytes
コンパイル時間 2,439 ms
コンパイル使用メモリ 207,392 KB
実行使用メモリ 252,672 KB
最終ジャッジ日時 2024-07-23 04:24:46
合計ジャッジ時間 13,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
252,672 KB
testcase_01 AC 239 ms
252,672 KB
testcase_02 AC 238 ms
252,544 KB
testcase_03 AC 236 ms
252,544 KB
testcase_04 AC 480 ms
252,672 KB
testcase_05 AC 515 ms
252,672 KB
testcase_06 AC 484 ms
252,544 KB
testcase_07 AC 519 ms
252,544 KB
testcase_08 AC 499 ms
252,544 KB
testcase_09 AC 474 ms
252,544 KB
testcase_10 AC 494 ms
252,544 KB
testcase_11 AC 516 ms
252,544 KB
testcase_12 AC 488 ms
252,544 KB
testcase_13 AC 481 ms
252,544 KB
testcase_14 AC 485 ms
252,544 KB
testcase_15 AC 482 ms
252,672 KB
testcase_16 AC 485 ms
252,544 KB
testcase_17 AC 485 ms
252,544 KB
testcase_18 AC 491 ms
252,672 KB
testcase_19 AC 494 ms
252,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

template<typename T>
T ceil(T a, T b){
    assert(b != 0);
    if (a == 0) return 0;

    if (a > 0 && b > 0) return (a+b-1) / b;
    else if (a < 0 && b < 0) return (a+b+1) / b;
    else return a / b;
}

template<typename T>
T floor(T a, T b){
    assert(b != 0);
    if (a == 0) return 0;

    if (a > 0 && b < 0) return (a-b-1) / b;
    else if (a < 0 && b > 0) return (a-b+1) / b;
    else return a / b;
}


int main(){

    ll N, M, L, R, X, Y, A, l, r;
    const ll K = 316;
    cin >> N >> M;

    vector<ll> ans(1e5+1);
    vector<vector<ll>> cnt(K, vector<ll>(1e5+1));

    for (int i=0; i<N; i++){
        cin >> L >> R >> X >> Y;
        l = ceil(L-Y, X);
        r = floor(R-Y, X);

        if (X >= K){
            for (int i=l; i<=r; i++) ans[X*i+Y]++;
        }
        else{
            cnt[X][X*l+Y]++;
            if (X*r+Y+X<=1e5) cnt[X][X*r+Y+X]--;
        }
    }

    for (int i=0; i<K; i++){
        for (int j=i; j<=1e5; j++) cnt[i][j] += cnt[i][j-i];
        for (int j=0; j<=1e5; j++){
            ans[j] += cnt[i][j];
        }
    }

    for (int i=0; i<M; i++){
        cin >> A;
        cout << ans[A] << endl;
    }

    return 0;
}
0