結果

問題 No.110 しましまピラミッド
ユーザー kichirb3kichirb3
提出日時 2018-03-21 17:48:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 1,412 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-12-31 11:39:05
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 33 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 34 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
11,008 KB
testcase_11 AC 33 ms
10,880 KB
testcase_12 AC 30 ms
11,008 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 31 ms
11,008 KB
testcase_15 AC 32 ms
11,008 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
11,008 KB
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 29 ms
11,008 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
11,008 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 31 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