結果

問題 No.1634 Sorting Integers (Multiple of K) Hard
ユーザー 👑 rin204rin204
提出日時 2023-12-20 23:34:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 833 ms / 3,000 ms
コード長 1,978 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 99,564 KB
最終ジャッジ日時 2024-09-27 10:15:56
合計ジャッジ時間 18,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,624 KB
testcase_01 AC 38 ms
52,896 KB
testcase_02 AC 38 ms
53,384 KB
testcase_03 AC 102 ms
76,720 KB
testcase_04 AC 63 ms
74,640 KB
testcase_05 AC 555 ms
77,920 KB
testcase_06 AC 533 ms
77,828 KB
testcase_07 AC 562 ms
77,960 KB
testcase_08 AC 574 ms
88,708 KB
testcase_09 AC 37 ms
53,680 KB
testcase_10 AC 38 ms
52,684 KB
testcase_11 AC 814 ms
97,592 KB
testcase_12 AC 795 ms
95,476 KB
testcase_13 AC 832 ms
97,880 KB
testcase_14 AC 811 ms
98,124 KB
testcase_15 AC 789 ms
98,456 KB
testcase_16 AC 833 ms
96,724 KB
testcase_17 AC 264 ms
79,644 KB
testcase_18 AC 337 ms
81,528 KB
testcase_19 AC 461 ms
84,644 KB
testcase_20 AC 325 ms
81,660 KB
testcase_21 AC 179 ms
77,920 KB
testcase_22 AC 616 ms
83,304 KB
testcase_23 AC 734 ms
87,404 KB
testcase_24 AC 809 ms
95,352 KB
testcase_25 AC 802 ms
95,960 KB
testcase_26 AC 796 ms
97,080 KB
testcase_27 AC 782 ms
96,272 KB
testcase_28 AC 830 ms
99,564 KB
testcase_29 AC 794 ms
95,868 KB
testcase_30 AC 797 ms
97,112 KB
testcase_31 AC 833 ms
96,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def next_permutation(P):
    n = len(P)
    for i in range(n - 2, -1, -1):
        if P[i] < P[i + 1]:
            l = i + 1
            r = n - 1
            while r > l:
                P[l], P[r] = P[r], P[l]
                l += 1
                r -= 1
            for j in range(i + 1, n):
                if P[i] < P[j]:
                    P[i], P[j] = P[j], P[i]
                    return True
    return False


def all_permutations(P):
    # 全列挙したい場合はソートしてある状態で渡す
    yield P
    while next_permutation(P):
        yield P


def prev_permutation(P):
    n = len(P)
    for i in range(n - 2, -1, -1):
        if P[i] > P[i + 1]:
            l = i + 1
            r = n - 1
            while r > l:
                P[l], P[r] = P[r], P[l]
                l += 1
                r -= 1
            for j in range(i + 1, n):
                if P[i] > P[j]:
                    P[i], P[j] = P[j], P[i]
                    return True
    return False


def rev_all_permutations(P):
    # 全列挙したい場合は逆順ソートしてある状態で渡す
    yield P
    while prev_permutation(P):
        yield P


n, k = map(int, input().split())
C = list(map(int, input().split()))
A = []
for i, c in enumerate(C, 1):
    A += [i] * c


def f(A):
    cnt = {}
    for P in all_permutations(A):
        tot = 0
        for p in P:
            tot = 10 * tot + p
        tot %= k
        cnt[tot] = cnt.get(tot, 0) + 1
    return cnt


se = set()
x = n // 2
times = pow(10, x, k)
ans = 0
for bit in range(1 << n):
    L = []
    R = []
    pc = 0
    for i in range(n):
        if bit >> i & 1:
            L.append(A[i])
            pc += 1
        else:
            R.append(A[i])

    if len(L) != x:
        continue
    tup = tuple(L)
    if tup in se:
        continue
    se.add(tup)

    cl = f(L)
    cr = f(R)
    for kr, vr in cr.items():
        kl = -kr * times % k
        ans += cl.get(kl, 0) * vr

print(ans)
0