結果

問題 No.2359 A in S ?
ユーザー erbowlerbowl
提出日時 2023-06-26 19:18:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,531 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 211,048 KB
実行使用メモリ 262,016 KB
最終ジャッジ日時 2024-07-03 14:18:23
合計ジャッジ時間 21,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 655 ms
257,920 KB
testcase_01 AC 625 ms
257,920 KB
testcase_02 AC 621 ms
257,920 KB
testcase_03 AC 644 ms
257,920 KB
testcase_04 AC 845 ms
261,888 KB
testcase_05 AC 882 ms
262,016 KB
testcase_06 AC 871 ms
261,780 KB
testcase_07 AC 889 ms
261,888 KB
testcase_08 WA -
testcase_09 AC 869 ms
261,788 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 863 ms
261,972 KB
testcase_13 AC 845 ms
262,016 KB
testcase_14 AC 844 ms
261,848 KB
testcase_15 AC 865 ms
261,860 KB
testcase_16 AC 875 ms
261,792 KB
testcase_17 AC 850 ms
262,016 KB
testcase_18 AC 877 ms
261,888 KB
testcase_19 AC 869 ms
261,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;
#include <bits/stdc++.h>
using namespace std;
#define int long long

signed main(){
    ll n,m;
    std::cin >> n>>m;
    vector<tuple<ll,ll,ll,ll>> q(n);
    for (int i = 0; i < n; i++) {
        ll l,r,x,y;
        std::cin >> l>>r>>x>>y;
        q[i] = {l,r,x,y};
    }
    vector<ll> a(m);
    for (int i = 0; i < m; i++) {
        std::cin >> a[i];
    }
    vector<ll> ans(100001);
    vector<vector<ll>> imos(100003,vector<ll>(320));
    for (int i = 0; i < n; i++) {
        auto [l,r,x,y] = q[i];
        
        if(x>=320){
            while(y<100000){
                if(l<=y&&y<=r){
                    ans[y]++;
                }
                y+= x;
            }
            continue;
        }
        
        ll st = max(0ll, (l-y+x-1)/x*x+y);
        ll en = min(100000ll, (r-y)/x*x+y);
        if(st<l)continue;
        if(r<st)continue;
        imos[st][x]++;
        if(en+x<=100000)imos[en+x][x]--;
    }
    // for (int j = 100; j <= 100; j++) {
    //     for (int i = 0; i <= 100; i++) {
    //         std::cout << imos[i][j]<<" ";
    //     }
    //     std::cout << std::endl;
    // }
    for (int i = 1; i < 320; i++) {
        for (int j = 1; j <= 100000; j++) {
            if(j-i>=0)imos[j][i] += imos[j-i][i];
        }
    }
    for (int j = 1; j <= 100000; j++) {
        for (int i = 1; i < 320; i++) {
            ans[j] += imos[j][i];
        }
    }
    for (int i = 0; i < m; i++) {
        std::cout << ans[a[i]] << std::endl;   
    }
}
0