結果

問題 No.1001 注文の多い順列
ユーザー mkawa2mkawa2
提出日時 2020-02-29 10:56:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,400 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 225,024 KB
最終ジャッジ日時 2024-10-13 19:53:46
合計ジャッジ時間 15,013 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 35 ms
11,392 KB
testcase_16 AC 31 ms
11,008 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 998 ms
93,568 KB
testcase_19 AC 962 ms
90,112 KB
testcase_20 AC 572 ms
58,752 KB
testcase_21 AC 538 ms
55,680 KB
testcase_22 AC 1,275 ms
118,656 KB
testcase_23 AC 1,221 ms
113,152 KB
testcase_24 AC 245 ms
45,824 KB
testcase_25 AC 1,173 ms
109,696 KB
testcase_26 AC 769 ms
101,120 KB
testcase_27 AC 700 ms
96,384 KB
testcase_28 AC 593 ms
89,216 KB
testcase_29 AC 247 ms
32,768 KB
testcase_30 AC 318 ms
38,528 KB
testcase_31 AC 414 ms
47,104 KB
testcase_32 AC 37 ms
11,264 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def SI(): return sys.stdin.readline()[:-1]

def main():
    md = 10 ** 9 + 7
    n = II()
    xt = []
    one = 0
    for _ in range(n):
        t, x = MI()
        if t:
            x -= 1
            one += 1
        xt.append((x, t))
    tt = []
    xx = []
    for x, t in sorted(xt):
        tt.append(t)
        xx.append(x)
    #print(tt)
    #print(xx)
    # dp[i][j]...i個まで見たとき、t=1の処理をj個飛ばしたときの場合の数
    dp = [[0] * (one + 1) for _ in range(n + 1)]
    dp[0][0] = 1
    for i in range(n):
        for j in range(min(i, one) + 1):
            pre = dp[i][j]
            if pre == 0: continue
            # 処理する
            dp[i + 1][j] = (dp[i + 1][j]+(xx[i] - i + j) * pre)%md
            # 処理しない
            if tt[i]: dp[i + 1][j + 1] = (pre+dp[i + 1][j + 1])%md
    #p2D(dp)
    fac=[1]
    for i in range(1,one+1):fac.append(fac[-1]*i%md)
    ans=0
    for j in range(one+1):
        if (one-j)&1:ans-=dp[n][j]*fac[j]
        else:ans+=dp[n][j]*fac[j]
        ans%=md
    print(ans)

main()
0