結果
問題 | No.1549 [Cherry 2nd Tune] BANning Tuple |
ユーザー | chocorusk |
提出日時 | 2021-06-11 21:42:39 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,717 bytes |
コンパイル時間 | 3,927 ms |
コンパイル使用メモリ | 197,308 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 17:18:22 |
合計ジャッジ時間 | 4,748 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; int main() { ll n; int q; cin>>n>>q; using mint=modint998244353; vector<mint> v(3001); v[0]=1; for(int i=1; i<=3000; i++) v[i]=v[i-1]*mint(n-1+i)/mint(i); int i0=0; map<ll, int> mpl, mpr; for(int i=0; i<q; i++){ ll k; int a, b, s, t; cin>>k>>a>>b>>s>>t; b++; if(mpl.find(k)!=mpl.end()){ int a1=mpl[k], b1=mpr[k]; if(a1==0){ i0-=b1; }else{ for(int j=0; j<=3000; j++){ if(j>=a1) v[j]+=v[j-a1]; if(j>=b1) v[j]-=v[j-b1]; } } a=min(a, a1), b=max(b, b1); } if(a>b){ cout<<0<<endl; continue; } mpl[k]=a, mpr[k]=b; if(a==0){ i0+=b; }else{ for(int j=3000; j>=0; j--){ if(j+a<=3000) v[j+a]-=v[j]; if(j+b<=3000) v[j+b]+=v[j]; } } mint ans=0; for(int j=max(0, s-i0); j<=t-i0; j++) ans+=v[j]; cout<<ans.val()<<endl; } return 0; }