結果
問題 | No.1001 注文の多い順列 |
ユーザー | tsutaj |
提出日時 | 2020-02-23 12:29:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 814 bytes |
コンパイル時間 | 761 ms |
コンパイル使用メモリ | 65,704 KB |
実行使用メモリ | 68,736 KB |
最終ジャッジ日時 | 2024-10-10 01:46:27 |
合計ジャッジ時間 | 9,871 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 86 ms
20,352 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 4 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 3 ms
5,248 KB |
testcase_11 | AC | 234 ms
39,168 KB |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
ソースコード
#include<iostream> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const ll mod=1e9+7 ; ll dp[20][1<<20]; int main(){ int n; cin>>n; int all = 1<<n; dp[0][0]=1; rep(i,n){ int x, y; cin>>x>>y; if(x){ rep(j,all)REP(k,y-1,n){ if(j & (1<<k))continue; dp[i+1][j|(1<<k)]+=dp[i][j]; if(dp[i+1][j|(1<<k)]>=mod)dp[i+1][j|(1<<k)]-=mod; } } else { rep(j,all)rep(k,y){ if(j & (1<<k))continue; dp[i+1][j|(1<<k)]+=dp[i][j]; if(dp[i+1][j|(1<<k)]>=mod)dp[i+1][j|(1<<k)]-=mod; } } } cout<<dp[n][all-1]<<endl; return 0; }