結果

問題 No.110 しましまピラミッド
ユーザー kichirb3kichirb3
提出日時 2018-03-21 17:48:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 1,412 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-10 03:16:17
合計ジャッジ時間 1,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.110 しましまピラミッド
https://yukicoder.me/problems/no/110

"""
import sys
from sys import stdin
from bisect import bisect_left
input = stdin.readline


def solve(white_blocks, black_blocks):
    white_blocks.append(-1)
    white_blocks.sort()
    black_blocks.append(-1)
    black_blocks.sort()
    
    WHITE, BLACK = 0, 1
    blocks = [white_blocks, black_blocks]

    # 白いブロックを最初に使う場合
    ans_w = [white_blocks[-1]]
    next_block = BLACK
    while True:
        i = bisect_left(blocks[next_block], ans_w[-1])
        if blocks[next_block][i-1] == -1:
            break
        ans_w.append(blocks[next_block][i-1])
        next_block = BLACK if next_block == WHITE else WHITE

    # 黒いブロックを最初に使う場合
    ans_b = [black_blocks[-1]]
    next_block = WHITE
    while True:
        i = bisect_left(blocks[next_block], ans_b[-1])
        if blocks[next_block][i-1] == -1:
            break
        ans_b.append(blocks[next_block][i-1])
        next_block = BLACK if next_block == WHITE else WHITE

    return max(len(ans_w), len(ans_b))


def main(args):
    nw = int(input())
    white_blocks = [int(x) for x in input().split()]
    nb = int(input())
    black_blocks = [int(x) for x in input().split()]

    ans = solve(white_blocks, black_blocks)
    print(ans)


if __name__ == '__main__':
    main(sys.argv[1:])
0