結果

問題 No.1001 注文の多い順列
ユーザー shotoyooshotoyoo
提出日時 2021-05-28 00:47:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 1,180 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 77,208 KB
最終ジャッジ日時 2024-11-06 18:16:30
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,124 KB
testcase_01 AC 40 ms
52,416 KB
testcase_02 AC 39 ms
52,288 KB
testcase_03 AC 38 ms
53,300 KB
testcase_04 AC 39 ms
53,488 KB
testcase_05 AC 39 ms
53,684 KB
testcase_06 AC 38 ms
52,232 KB
testcase_07 AC 39 ms
52,416 KB
testcase_08 AC 40 ms
52,320 KB
testcase_09 AC 39 ms
52,600 KB
testcase_10 AC 40 ms
53,468 KB
testcase_11 AC 40 ms
53,472 KB
testcase_12 AC 40 ms
54,036 KB
testcase_13 AC 50 ms
62,268 KB
testcase_14 AC 52 ms
62,752 KB
testcase_15 AC 54 ms
64,340 KB
testcase_16 AC 52 ms
62,300 KB
testcase_17 AC 51 ms
62,584 KB
testcase_18 AC 140 ms
76,456 KB
testcase_19 AC 137 ms
75,980 KB
testcase_20 AC 115 ms
76,276 KB
testcase_21 AC 117 ms
76,120 KB
testcase_22 AC 156 ms
75,944 KB
testcase_23 AC 151 ms
76,584 KB
testcase_24 AC 154 ms
76,088 KB
testcase_25 AC 151 ms
76,016 KB
testcase_26 AC 113 ms
77,208 KB
testcase_27 AC 123 ms
75,756 KB
testcase_28 AC 123 ms
75,692 KB
testcase_29 AC 189 ms
77,064 KB
testcase_30 AC 190 ms
76,556 KB
testcase_31 AC 191 ms
76,960 KB
testcase_32 AC 108 ms
76,272 KB
testcase_33 AC 146 ms
75,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
l = [0]*n
r = [0]*n
ll = 0
for i in range(n):
    t,x = list(map(int, input().split()))
    x -= 1
    if t==1:
        r[x] += 1
    else:
        l[x] += 1
        ll += 1
dp = [0]*(n+1)
dp[0] = 1
M = 10**9+7
vl = vr = 0
for i in range(n):
    for _ in range(r[i]):
        ndp = dp[:]
        for j in range(n):
            num = i-(vl+j)
            if num<=0:
                continue
            ndp[j+1] += dp[j]*num%M
            ndp[j+1] %= M
        dp = ndp
        vr += 1
    for _ in range(l[i]):
        ndp = [0]*(n+1)
        for j in range(n):
            num = i+1-(vl+j)
            if num<=0:
                continue
            ndp[j] += dp[j]*num%M
            ndp[j] %= M
        vl += 1
        dp = ndp
g1 = [1]
for i in range(n+10):
    g1.append(g1[-1]*(i+1)%M)
ans = 0
s = -1
for j in range(n+1):
    s *= -1
    if dp[j]==0:
        continue
    ans += s * (dp[j] * g1[vr-j] % M)
    ans %= M
print(ans%M)
0