結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 21:55:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 682 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 119,688 KB
最終ジャッジ日時 2024-04-29 09:42:03
合計ジャッジ時間 60,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 563 ms
119,688 KB
testcase_01 AC 558 ms
44,220 KB
testcase_02 AC 550 ms
44,216 KB
testcase_03 AC 599 ms
44,220 KB
testcase_04 AC 613 ms
44,340 KB
testcase_05 AC 603 ms
44,224 KB
testcase_06 AC 611 ms
44,088 KB
testcase_07 AC 587 ms
44,596 KB
testcase_08 AC 584 ms
44,208 KB
testcase_09 AC 584 ms
44,084 KB
testcase_10 AC 596 ms
44,080 KB
testcase_11 AC 1,804 ms
47,600 KB
testcase_12 AC 1,837 ms
47,412 KB
testcase_13 AC 2,118 ms
48,692 KB
testcase_14 AC 1,863 ms
47,668 KB
testcase_15 AC 2,055 ms
48,692 KB
testcase_16 AC 1,811 ms
47,928 KB
testcase_17 AC 1,992 ms
48,300 KB
testcase_18 AC 1,914 ms
48,692 KB
testcase_19 AC 2,009 ms
48,824 KB
testcase_20 AC 2,149 ms
48,948 KB
testcase_21 AC 1,943 ms
47,920 KB
testcase_22 AC 1,767 ms
48,180 KB
testcase_23 AC 1,871 ms
47,540 KB
testcase_24 AC 2,011 ms
48,312 KB
testcase_25 AC 2,074 ms
48,564 KB
testcase_26 AC 1,950 ms
48,184 KB
testcase_27 AC 1,873 ms
47,664 KB
testcase_28 AC 2,054 ms
49,844 KB
testcase_29 AC 2,091 ms
49,584 KB
testcase_30 AC 2,077 ms
49,076 KB
testcase_31 AC 2,079 ms
49,456 KB
testcase_32 AC 2,057 ms
48,948 KB
testcase_33 AC 2,136 ms
49,468 KB
testcase_34 TLE -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


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

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

print(solve(input_np))
0