結果

問題 No.1001 注文の多い順列
ユーザー tempura_pptempura_pp
提出日時 2020-02-18 02:14:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,001 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 73,336 KB
実行使用メモリ 73,656 KB
最終ジャッジ日時 2024-10-06 15:21:48
合計ジャッジ時間 2,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
7,976 KB
testcase_15 AC 4 ms
9,952 KB
testcase_16 AC 4 ms
7,736 KB
testcase_17 AC 3 ms
7,820 KB
testcase_18 AC 34 ms
67,260 KB
testcase_19 AC 31 ms
65,116 KB
testcase_20 AC 23 ms
52,772 KB
testcase_21 AC 21 ms
50,588 KB
testcase_22 AC 39 ms
73,540 KB
testcase_23 AC 39 ms
73,596 KB
testcase_24 AC 38 ms
73,424 KB
testcase_25 AC 37 ms
73,548 KB
testcase_26 AC 40 ms
71,468 KB
testcase_27 AC 40 ms
73,224 KB
testcase_28 AC 41 ms
73,476 KB
testcase_29 AC 35 ms
73,656 KB
testcase_30 AC 35 ms
73,276 KB
testcase_31 AC 36 ms
73,528 KB
testcase_32 AC 34 ms
73,464 KB
testcase_33 AC 42 ms
73,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

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[3030][3030];
int main(){
    int n;
    cin>>n;
    pair<int,int> p[n];
    int cnt = 0;
    rep(i,n){
        cin>>p[i].second>>p[i].first;
        if(p[i].second==1){
            --p[i].first;++cnt;
        }
    }
    sort(p,p+n);
    dp[0][0]=1;
    rep(i,n)rep(j,i+1){
        dp[i][j]%=mod;
        int used = i-j;
        if(p[i].second==0)dp[i+1][j]+=dp[i][j]*max(p[i].first-used,0)%mod;
        if(p[i].second==1){
            dp[i+1][j]+=dp[i][j]*max(p[i].first-used,0)%mod;
            dp[i+1][j+1]+=dp[i][j];
        }
    }
    ll fact = 1;
    rep(j,n+1){
        dp[n][j]=dp[n][j]*fact%mod;
        fact =fact*(j+1)%mod;
    }
    ll ans = 0;
    rep(i,cnt+1){
        if(i%2==0)ans += dp[n][cnt-i];
        else ans += mod-dp[n][cnt-i];
    }
    cout<<ans%mod<<endl;
    return 0;
}
0