結果

問題 No.1001 注文の多い順列
ユーザー kyort0nkyort0n
提出日時 2020-02-28 21:53:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,915 bytes
コンパイル時間 1,562 ms
コンパイル使用メモリ 170,532 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-10-13 17:19:10
合計ジャッジ時間 4,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 137 ms
67,328 KB
testcase_19 AC 120 ms
64,000 KB
testcase_20 AC 74 ms
45,312 KB
testcase_21 AC 68 ms
41,344 KB
testcase_22 AC 160 ms
73,856 KB
testcase_23 AC 156 ms
73,728 KB
testcase_24 AC 157 ms
73,600 KB
testcase_25 AC 161 ms
72,704 KB
testcase_26 AC 111 ms
72,320 KB
testcase_27 AC 112 ms
72,832 KB
testcase_28 AC 115 ms
72,960 KB
testcase_29 AC 124 ms
73,344 KB
testcase_30 AC 118 ms
71,680 KB
testcase_31 AC 123 ms
73,344 KB
testcase_32 AC 126 ms
73,728 KB
testcase_33 AC 115 ms
73,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;
template<class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

const long double EPS = 1e-10;
const long long INF = 1e18;
const long double PI = acos(-1.0L);
const ll mod = 1000000007;
ll N;
vector<ll> t, X;
ll dp[3002][3002];

int main() {
    //cout.precision(10);
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> N;
    t.resize(N);
    X.resize(N);
    for(int i = 0; i < N; i++) {
        cin >> t[i] >> X[i];
        X[i]--;
    }
    dp[0][0] = 1;
    ll Up = 0;
    ll Down = 0;
    for(ll val = 0; val < N; val++) {
        for(int i = 0; i < N; i++) {
            if(t[i] == 1 and X[i] == val) Up++;
        }
        for(int before = 0; before <= N; before++) {
            ll delta = Up - before;
            chmax(delta, 0LL);
            dp[val+1][before+1] += dp[val][before] * delta;
            dp[val+1][before+1] %= mod;
            dp[val+1][before] += dp[val][before];
            dp[val+1][before] %= mod;
        }
        for(int i = 0; i < N; i++) {
            if(t[i] == 0 and X[i] == val) {
                for(ll before = 0; before <= N; before++) {
                    ll delta = val + 1 - before - Down;
                    if(delta <= 0) dp[val+1][before] = 0;
                    else dp[val+1][before] *= delta;
                    dp[val+1][before] %= mod;
                }
                Down++;
            }
        }
    }
    ll ans = dp[N][Up];
    /*
    for(int i = 0; i <= N; i++) {
        for(int j = 0; j <= N; j++) {
            cerr << dp[i][j] << " ";
        }
        cerr << endl;
    }
    */
    cout << ans << endl;
    return 0;
}
0