結果
問題 | No.2359 A in S ? |
ユーザー | kotatsugame |
提出日時 | 2023-06-23 21:46:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 196 ms / 2,000 ms |
コード長 | 770 bytes |
コンパイル時間 | 558 ms |
コンパイル使用メモリ | 69,700 KB |
実行使用メモリ | 259,560 KB |
最終ジャッジ日時 | 2024-07-01 01:22:00 |
合計ジャッジ時間 | 5,396 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
259,232 KB |
testcase_01 | AC | 149 ms
259,376 KB |
testcase_02 | AC | 151 ms
259,532 KB |
testcase_03 | AC | 149 ms
259,428 KB |
testcase_04 | AC | 190 ms
259,344 KB |
testcase_05 | AC | 196 ms
259,312 KB |
testcase_06 | AC | 177 ms
259,404 KB |
testcase_07 | AC | 186 ms
259,384 KB |
testcase_08 | AC | 182 ms
259,560 KB |
testcase_09 | AC | 147 ms
259,332 KB |
testcase_10 | AC | 156 ms
259,192 KB |
testcase_11 | AC | 158 ms
259,320 KB |
testcase_12 | AC | 147 ms
259,488 KB |
testcase_13 | AC | 146 ms
259,352 KB |
testcase_14 | AC | 148 ms
259,320 KB |
testcase_15 | AC | 147 ms
259,324 KB |
testcase_16 | AC | 148 ms
259,344 KB |
testcase_17 | AC | 151 ms
259,552 KB |
testcase_18 | AC | 147 ms
259,396 KB |
testcase_19 | AC | 150 ms
259,412 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cassert> using namespace std; int N,M; int cnt[1<<17]; const int LIM=500; int imos[LIM][1<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M; for(int i=0;i<N;i++) { int L,R,X,Y; cin>>L>>R>>X>>Y; R++; int low=L-Y; if(low<=0)low=Y; else low=(low+X-1)/X*X+Y; if(X>=LIM) { while(low<R) { cnt[low]++; low+=X; } } else { if(low<R) { imos[X][low]++; int d=R-low; d=(d+X-1)/X*X; if(low+d<1<<17)imos[X][low+d]--; } } } for(int x=1;x<LIM;x++) { for(int y=0;y+x<1<<17;y++)imos[x][y+x]+=imos[x][y]; for(int y=0;y<1<<17;y++)cnt[y]+=imos[x][y]; } for(int i=0;i<M;i++) { int a;cin>>a; cout<<cnt[a]<<"\n"; } }