結果
問題 | No.2359 A in S ? |
ユーザー | HIcoder |
提出日時 | 2023-07-02 11:08:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 508 ms / 2,000 ms |
コード長 | 1,766 bytes |
コンパイル時間 | 1,016 ms |
コンパイル使用メモリ | 91,168 KB |
実行使用メモリ | 255,044 KB |
最終ジャッジ日時 | 2024-07-16 07:14:31 |
合計ジャッジ時間 | 10,407 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,348 KB |
testcase_01 | AC | 5 ms
6,016 KB |
testcase_02 | AC | 20 ms
20,252 KB |
testcase_03 | AC | 5 ms
6,788 KB |
testcase_04 | AC | 483 ms
254,912 KB |
testcase_05 | AC | 508 ms
255,040 KB |
testcase_06 | AC | 486 ms
254,976 KB |
testcase_07 | AC | 506 ms
254,880 KB |
testcase_08 | AC | 498 ms
254,912 KB |
testcase_09 | AC | 487 ms
255,040 KB |
testcase_10 | AC | 502 ms
254,912 KB |
testcase_11 | AC | 507 ms
255,044 KB |
testcase_12 | AC | 487 ms
255,044 KB |
testcase_13 | AC | 474 ms
254,912 KB |
testcase_14 | AC | 476 ms
254,912 KB |
testcase_15 | AC | 476 ms
254,964 KB |
testcase_16 | AC | 482 ms
254,912 KB |
testcase_17 | AC | 479 ms
254,912 KB |
testcase_18 | AC | 474 ms
254,912 KB |
testcase_19 | AC | 473 ms
254,908 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<int,int> P; typedef pair<int,P> PP; const ll MOD=1e9+7; int main(){ int N,M; cin>>N>>M; vector<int> L(N),R(N),X(N),Y(N); ll maxR=0; for(int i=0;i<N;i++){ cin>>L[i]>>R[i]>>X[i]>>Y[i]; maxR=max(1LL*R[i],maxR); } ll K=maxR+1; vector<int> A(M); for(int i=0;i<M;i++)cin>>A[i]; const ll T=max(1LL,(ll)sqrt(N)); const ll MAXA=100000+10; vector<int> cnt(MAXA+1); vector<vector<ll>> imos(T,vector<ll>(MAXA+1,0)); for(int i=0;i<N;i++){ int l=L[i]; int r=R[i]; int x=X[i]; int y=Y[i]; if(x>=T){ ll left=1LL*(L[i]-Y[i]+x-1)/x*x; for(ll t=left+y;t<=R[i];t+=X[i]){ cnt[t]++; } }else{ //x<T ll left=max(0LL,1LL*(l-y+x-1)/x*x + y); ll right=min(MAXA+1,1LL*(r-y)/x*x + y); if(l<=left && right<=r){ imos[x][left]++; if(right+x<=MAXA){ imos[x][right+x]--; } } } } for(int x=0;x<T;x++){ for(int v=1;v<=MAXA;v++){ if(v-x>=0){ imos[x][v]+=imos[x][v-x]; } } } vector<ll> num(MAXA+1,0); for(int x=0;x<T;x++){ for(int v=1;v<=MAXA;v++){ num[v]+=imos[x][v]; } } vector<ll> ans(M); for(int i=0;i<M;i++){ ans[i]=cnt[A[i]]+num[A[i]]; } for(int v:ans){ cout<<v<<endl; } }