結果

問題 No.1001 注文の多い順列
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-05 22:27:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 1,277 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 147,348 KB
最終ジャッジ日時 2024-11-27 06:59:20
合計ジャッジ時間 6,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,088 KB
testcase_01 AC 35 ms
52,400 KB
testcase_02 AC 35 ms
52,472 KB
testcase_03 AC 34 ms
53,088 KB
testcase_04 AC 34 ms
53,028 KB
testcase_05 AC 35 ms
52,504 KB
testcase_06 AC 36 ms
52,752 KB
testcase_07 AC 35 ms
52,288 KB
testcase_08 AC 34 ms
52,676 KB
testcase_09 AC 35 ms
53,328 KB
testcase_10 AC 34 ms
52,840 KB
testcase_11 AC 34 ms
52,776 KB
testcase_12 AC 36 ms
52,984 KB
testcase_13 AC 52 ms
64,868 KB
testcase_14 AC 54 ms
65,704 KB
testcase_15 AC 58 ms
67,392 KB
testcase_16 AC 54 ms
67,132 KB
testcase_17 AC 52 ms
65,680 KB
testcase_18 AC 222 ms
128,356 KB
testcase_19 AC 223 ms
129,048 KB
testcase_20 AC 164 ms
105,640 KB
testcase_21 AC 157 ms
105,700 KB
testcase_22 AC 266 ms
147,348 KB
testcase_23 AC 262 ms
146,876 KB
testcase_24 AC 261 ms
146,484 KB
testcase_25 AC 259 ms
145,220 KB
testcase_26 AC 161 ms
128,020 KB
testcase_27 AC 195 ms
145,084 KB
testcase_28 AC 208 ms
145,476 KB
testcase_29 AC 226 ms
146,576 KB
testcase_30 AC 229 ms
143,124 KB
testcase_31 AC 244 ms
146,644 KB
testcase_32 AC 202 ms
146,964 KB
testcase_33 AC 149 ms
127,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = [[] for i in range(2)]
for _ in range(n):
    t,x = map(int,input().split())
    X[t].append(x-1)

mod = 10**9+7
A = sorted(X[0])
B = sorted(X[1])

la = len(A)
lb = len(B)
dp = [[0]*(n+1) for i in range(n+1)]
dp[0][0] = 1

for i in range(n):
    c0 = 0
    c1 = 0
    for x in A:
        if i <= x:
            c0 += 1
    for x in B:
        if i >= x:
            c1 += 1
    
    for x in range(la+1):
        y = i-x
        if y > lb or y < 0:
            continue
        
        if x < la:
            dp[x+1][y] += dp[x][y]*(c0-(la-x-1))%mod
            dp[x+1][y] %= mod
        if y < lb:
            dp[x][y+1] += dp[x][y]*(c1-y)%mod
            dp[x][y+1] %= mod

ans = 0
for i in range(n+1):
    ans += dp[i][n-i]
    ans %= mod
print(ans)        
0