結果
問題 | No.767 配られたジャパリまん |
ユーザー | chocorusk |
提出日時 | 2018-12-15 00:41:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,836 bytes |
コンパイル時間 | 891 ms |
コンパイル使用メモリ | 101,016 KB |
実行使用メモリ | 23,040 KB |
最終ジャッジ日時 | 2024-09-25 05:34:25 |
合計ジャッジ時間 | 3,999 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 19 ms
22,784 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#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> using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=1e8+7; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k>0){ if(k%2==1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k/=2; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } int main() { ll f[200001]; f[0]=1; for(ll i=1; i<=200000; i++) f[i]=f[i-1]*i%MOD; ll invf[200001]; invf[200000]=inv(f[200000]); for(ll i=200000-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD; int h, w, k; cin>>h>>w>>k; int a[20], b[20]; P q[20]; int ind[20]; for(int i=0; i<k; i++) cin>>a[i]>>b[i], q[i]=P(a[i], b[i]), ind[i]=i; sort(ind, ind+k, [&](int i, int j){ return q[i]<q[j];}); ll c0[1<<20], c[1<<20]; c0[0]=f[h+w]*invf[h]%MOD*invf[w]%MOD; c[0]=c0[0]; for(int i=1; i<(1<<k); i++){ P pr=P(0, 0); c0[i]=1; int i0=0; for(int j=0; j<k; j++){ if((i&(1<<j))==0) continue; P p=q[ind[j]]; i0|=(1<<(ind[j])); if(p.first>=pr.first && p.second>=pr.second){ c0[i]*=(f[p.first-pr.first+p.second-pr.second]*invf[p.first-pr.first]%MOD*invf[p.second-pr.second]%MOD); c0[i]%=MOD; pr=p; }else{ c0[i]=0; break; } } c[i0]=c0[i]; } for(int i=0; i<k; i++){ for(int j=0; j<(1<<k); j++){ if(j&(1<<i)){ c[j]-=c[j^(1<<i)]; c[j]=(c[j]+MOD)%MOD; } } } for(int i=0; i<(1<<k); i++){ int ct=0; for(int j=0; j<k; j++) if(i&(1<<j)) ct++; if(ct&1) cout<<(MOD-c[i])%MOD<<endl; else cout<<c[i]<<endl; } return 0; }