結果

問題 No.2359 A in S ?
ユーザー 鴨志田卓鴨志田卓
提出日時 2023-07-21 11:20:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 207,392 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-09-21 13:31:34
合計ジャッジ時間 7,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,260 KB
testcase_01 AC 3 ms
8,192 KB
testcase_02 AC 5 ms
8,644 KB
testcase_03 AC 4 ms
8,448 KB
testcase_04 AC 202 ms
11,820 KB
testcase_05 AC 275 ms
14,592 KB
testcase_06 AC 208 ms
11,820 KB
testcase_07 AC 163 ms
10,792 KB
testcase_08 AC 263 ms
13,868 KB
testcase_09 AC 241 ms
12,972 KB
testcase_10 AC 254 ms
13,880 KB
testcase_11 AC 260 ms
13,876 KB
testcase_12 AC 197 ms
11,816 KB
testcase_13 AC 193 ms
11,920 KB
testcase_14 AC 198 ms
12,112 KB
testcase_15 AC 223 ms
13,096 KB
testcase_16 AC 252 ms
13,440 KB
testcase_17 AC 247 ms
13,508 KB
testcase_18 AC 245 ms
13,508 KB
testcase_19 AC 243 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using pii = pair<int, int>;
const int N = 1e5 + 10, B = 350;

int sc[B][B], lc[N];

int n, m, ans[N];
vector<pii> s[N];
vector<int> q[N];

int main() {
    cin >> n >> m;
    for(int i = 1, l, r, x, y; i <= n; i ++) {
        cin >> l >> r >> x >> y;
        s[l].push_back({x, y});
        s[r + 1].push_back({-x, y});
    }

    for(int i = 1, x; i <= m; i ++) {
        cin >> x;
        q[x].push_back(i);
    }

    for(int i = 1; i < N; i ++) {
        for(auto [p, x] : s[i]) {
            int w = 1;
            if(p < 0) {
                p = -p;
                w = -w;
            }
            if(p < B) sc[p][x] += w;
            else{
                for(int i = 0; i * p + x < N; i ++)
                    lc[i * p + x] += w;
            }
        }

        if(q[i].empty()) continue;
        
        int tot = lc[i];
        for(int j = 1; j < B; j ++)
            tot += sc[j][i % j];

        for(auto x : q[i]) {
            ans[x] = tot;
        }
    }

    for(int i = 1; i <= m; i ++)
        cout << ans[i] << "\n";
}
0