結果

問題 No.2359 A in S ?
ユーザー hiro71687khiro71687k
提出日時 2023-06-28 17:37:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 613 ms / 2,000 ms
コード長 2,067 bytes
コンパイル時間 4,656 ms
コンパイル使用メモリ 272,836 KB
実行使用メモリ 19,844 KB
最終ジャッジ日時 2024-07-05 10:51:13
合計ジャッジ時間 16,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 561 ms
18,892 KB
testcase_05 AC 613 ms
18,632 KB
testcase_06 AC 570 ms
19,592 KB
testcase_07 AC 602 ms
18,548 KB
testcase_08 AC 602 ms
18,592 KB
testcase_09 AC 561 ms
19,272 KB
testcase_10 AC 567 ms
18,876 KB
testcase_11 AC 579 ms
18,836 KB
testcase_12 AC 557 ms
19,844 KB
testcase_13 AC 575 ms
19,428 KB
testcase_14 AC 572 ms
18,636 KB
testcase_15 AC 565 ms
18,696 KB
testcase_16 AC 574 ms
19,100 KB
testcase_17 AC 573 ms
18,972 KB
testcase_18 AC 585 ms
18,956 KB
testcase_19 AC 575 ms
18,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include<atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=20000099999900;
ll mod=998244353;
int main(){
    ll n,m;
    cin >> n >> m;
    vector<ll>l(n),r(n),x(n),y(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> l[i] >> r[i] >> x[i] >> y[i];
    }
    vector<ll>a(m);
    for (ll i = 0; i < m; i++)
    {
        cin >> a[i];
    }
    vector<vector<ll>>b(300,vector<ll>(300,0));
    vector<ll>c(100001,0);
    vector<pair<ll,pair<ll,ll>>>p(m);
    for (ll i = 0; i < m; i++)
    {
        p[i]={a[i],{i,i}};
    }
    for (ll i = 0; i < n; i++)
    {
        if (1)
        {
            p.push_back({l[i],{-inf,i}});
            p.push_back({r[i],{inf,i}});
        }
    }
    sort(p.begin(),p.end());
    vector<ll>ans(m,0);
    for (ll i = 0; i < p.size(); i++)
    {
        ll xx=p[i].first;
        ll yy=p[i].second.first;
        ll z=p[i].second.second;
        if (yy==inf)
        {
            if (x[z]<300)
            {
                b[x[z]][y[z]]--;
            }else{
                ll now=y[z];
                while (now<l[z])
                {
                    now+=x[z];
                }
                while (now<=r[z])
                {
                    c[now]--;
                    now+=x[z];
                }
            }
        }else if (yy==-inf)
        {
            if (x[z]<300)
            {
                b[x[z]][y[z]]++;
            }else{
                ll now=y[z];
                while (now<l[z])
                {
                    now+=x[z];
                }
                while (now<=r[z])
                {
                    c[now]++;
                    now+=x[z];
                }
            }
        }else{
            for (ll j = 1; j < 300; j++)
            {
                ll zz=xx%j;
                ans[yy]+=b[j][zz];
            }
            ans[yy]+=c[xx];
        }
    }
    for (ll i = 0; i < ans.size(); i++)
    {
        cout << ans[i] << endl;
    }
    
}
0