結果

問題 No.110 しましまピラミッド
ユーザー tnodinotnodino
提出日時 2022-06-08 21:59:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,560 ms / 5,000 ms
コード長 952 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-21 05:15:50
合計ジャッジ時間 21,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 27 ms
11,008 KB
testcase_08 AC 31 ms
11,008 KB
testcase_09 AC 3,437 ms
10,880 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 184 ms
10,752 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 941 ms
10,880 KB
testcase_18 AC 26 ms
10,880 KB
testcase_19 AC 428 ms
10,752 KB
testcase_20 AC 28 ms
10,880 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 437 ms
10,752 KB
testcase_24 AC 3,458 ms
10,880 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 31 ms
10,880 KB
testcase_27 AC 3,527 ms
10,880 KB
testcase_28 AC 3,514 ms
10,880 KB
testcase_29 AC 3,560 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(s, t):
    for i in range(len(s)):
        if t[i] <= s[i]:
            return False
        if s[i] <= t[i+1]:
            return False
    return True

N = int(input())
W = list(map(int,input().split()))
M = int(input())
B = list(map(int,input().split()))
W.sort(reverse=True)
B.sort(reverse=True)
ans = 0
for bit_w in range(1<<N):
    for bit_b in range(1<<M):
        if abs(bin(bit_w).count('1') - bin(bit_b).count('1')) > 1:
            continue
        s = []
        t = []
        for i in range(N):
            if bit_w & (1<<i):
                s.append(W[i])
        for i in range(M):
            if bit_b & (1<<i):
                t.append(B[i])
        if len(s) == len(t):
            if check(s, [100] + t) or check(t, [100] + s):
                ans = max(ans, len(s)*2)
        else:
            if len(s) > len(t):
                s,t = t,s
            if check(s, t):
                ans = max(ans, len(s)*2+1)
print(ans)
0