結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 22:17:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,024 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 98,656 KB
最終ジャッジ日時 2024-11-18 13:05:28
合計ジャッジ時間 127,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 487 ms
51,176 KB
testcase_01 AC 479 ms
51,704 KB
testcase_02 AC 478 ms
51,324 KB
testcase_03 AC 600 ms
93,352 KB
testcase_04 AC 592 ms
51,324 KB
testcase_05 AC 613 ms
93,740 KB
testcase_06 AC 597 ms
51,188 KB
testcase_07 AC 598 ms
93,212 KB
testcase_08 AC 612 ms
51,180 KB
testcase_09 AC 623 ms
93,600 KB
testcase_10 AC 609 ms
51,448 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 RE -
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 AC 483 ms
43,996 KB
testcase_55 AC 497 ms
93,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve(area, selected_ind, flag):
    if area.shape[0] <= 1:
        return 0
    # selected_ind = area*0
    max_ind = np.argmax(area)
    min_ind = max_ind
    if flag == 2:
        selected_ind[0: max_ind + 1] = 0
    for i in reversed(range(max_ind)):
        if selected_ind[i] == 1:
            break
        if area[min_ind] > area[i]:
            min_ind = i
            selected_ind[i] = 1
    min_ind = max_ind
    if flag == 1:
        selected_ind[max_ind:area.shape[0]] = 0
    for i in range(max_ind+1, area.shape[0]):
        if selected_ind[i] == 1:
            break
        if area[min_ind] > area[i]:
            min_ind = i
            selected_ind[i] = 1
    count = np.sum(selected_ind)
    count += solve(area[0:max_ind], selected_ind[0:max_ind], 1)
    count += solve(area[max_ind+1:area.shape[0]], selected_ind[max_ind+1:selected_ind.shape[0]], 2)
    return count

N = int(input())
input_np = np.array(input().split()).astype(np.int32)

print(solve(input_np, input_np*0, 0))
0