結果
問題 | No.2133 Take it easy! |
ユーザー | iro_ |
提出日時 | 2022-10-20 21:47:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,663 bytes |
コンパイル時間 | 1,800 ms |
コンパイル使用メモリ | 177,884 KB |
実行使用メモリ | 16,808 KB |
最終ジャッジ日時 | 2024-10-02 03:25:58 |
合計ジャッジ時間 | 3,462 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 18 ms
15,184 KB |
testcase_01 | AC | 18 ms
15,196 KB |
testcase_02 | AC | 17 ms
15,232 KB |
testcase_03 | AC | 20 ms
16,368 KB |
testcase_04 | AC | 19 ms
16,220 KB |
testcase_05 | AC | 17 ms
15,184 KB |
testcase_06 | AC | 16 ms
15,104 KB |
testcase_07 | AC | 21 ms
16,192 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 19 ms
16,116 KB |
testcase_12 | AC | 20 ms
16,096 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 19 ms
16,336 KB |
testcase_19 | AC | 19 ms
16,000 KB |
testcase_20 | AC | 17 ms
16,056 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 22 ms
16,512 KB |
testcase_25 | AC | 21 ms
16,468 KB |
testcase_26 | AC | 17 ms
15,188 KB |
testcase_27 | AC | 17 ms
15,184 KB |
testcase_28 | AC | 19 ms
16,488 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i,n) for (ll i = 0; i < n; ++ i) using ll = long long ; using vi = vector<ll>; using vb = vector<bool>; using vvi = vector<vi>; const ll mod = 998244353; //---------------------------------------------------------------- const ll si_f = 5e5; ll f[si_f+1], invf[si_f+1], inv[si_f+1]; ll po(ll n,ll m){ ll res = 1; while (m) { if (m&1) res = res * n % mod; n = n * n % mod; m /= 2; } return res; } void init() { f[0] = f[1] = 1; invf[0] = invf[1] = 1; inv[1] = 1; for(ll i = 2; i < si_f; ++i){ f[i] = f[i-1] * i % mod; inv[i] = mod - inv[mod%i] * (mod/i) % mod; invf[i] = invf[i-1] * inv[i] % mod; } return; } ll C(int n, int k) { ll a = f[n]; // = n! ll b = invf[n-k]; // = (n-k)! ll c = invf[k]; // = k! ll bc = (b * c) % mod; return (a * bc) % mod; } //---------------------------------------------------------------- void solver(ll x,ll &res,ll id){ if(x%2==0){ ll y = x/2; ll c = C(x,y) * po(y+1,mod-2) % mod; res = res * c % mod; } else if(id == 0){ ll y = x/2; ll c = 2 * C(x,y) * po(y+2,mod-2) % mod; res = res * c % mod; } else res = 0; return; } //---------------------------------------------------------------- int main(){ init(); int N,Q; cin >> N >> Q; vi imos(N+1,0),L(Q),R(Q); rep(i,Q){ cin >> L[i] >> R[i]; --L[i]; imos[L[i]] += (1<<i); imos[R[i]] -= (1<<i); R[i] -= L[i]; } rep(i,N) imos[i+1] += imos[i]; map<ll,ll> kukan; rep(i,N) ++kukan[imos[i]]; ll res = f[N/2]*f[(N+1)/2] % mod; for(auto siz:kukan){ solver(siz.second,res,siz.first); } cout << res << endl; }