結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-26 22:13:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 683 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 140,704 KB
最終ジャッジ日時 2024-11-18 12:51:38
合計ジャッジ時間 136,757 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 452 ms
51,156 KB
testcase_01 AC 452 ms
51,284 KB
testcase_02 AC 451 ms
51,036 KB
testcase_03 AC 507 ms
51,540 KB
testcase_04 AC 510 ms
51,156 KB
testcase_05 AC 509 ms
131,216 KB
testcase_06 AC 504 ms
51,412 KB
testcase_07 AC 495 ms
134,684 KB
testcase_08 AC 498 ms
51,032 KB
testcase_09 AC 500 ms
133,788 KB
testcase_10 AC 497 ms
51,040 KB
testcase_11 AC 1,589 ms
138,468 KB
testcase_12 AC 1,597 ms
54,228 KB
testcase_13 AC 1,874 ms
140,280 KB
testcase_14 AC 1,640 ms
54,628 KB
testcase_15 AC 1,860 ms
137,144 KB
testcase_16 AC 1,692 ms
54,876 KB
testcase_17 AC 1,816 ms
136,016 KB
testcase_18 AC 1,777 ms
54,992 KB
testcase_19 AC 1,840 ms
138,676 KB
testcase_20 AC 1,890 ms
55,772 KB
testcase_21 AC 1,790 ms
140,704 KB
testcase_22 AC 1,573 ms
54,500 KB
testcase_23 AC 1,727 ms
135,196 KB
testcase_24 AC 1,834 ms
55,764 KB
testcase_25 AC 1,843 ms
135,296 KB
testcase_26 AC 1,738 ms
55,124 KB
testcase_27 AC 1,639 ms
128,740 KB
testcase_28 AC 1,844 ms
56,664 KB
testcase_29 AC 1,871 ms
138,212 KB
testcase_30 AC 1,842 ms
56,276 KB
testcase_31 AC 1,856 ms
137,956 KB
testcase_32 AC 1,832 ms
55,964 KB
testcase_33 AC 1,942 ms
123,584 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 RE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 455 ms
44,428 KB
testcase_55 AC 454 ms
119,552 KB
権限があれば一括ダウンロードができます

ソースコード

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