結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 504 ms
51,284 KB
testcase_01 AC 511 ms
120,152 KB
testcase_02 AC 510 ms
51,156 KB
testcase_03 AC 569 ms
51,160 KB
testcase_04 AC 575 ms
51,160 KB
testcase_05 AC 566 ms
131,424 KB
testcase_06 AC 568 ms
51,036 KB
testcase_07 AC 574 ms
135,184 KB
testcase_08 AC 562 ms
51,036 KB
testcase_09 AC 576 ms
133,348 KB
testcase_10 AC 569 ms
51,032 KB
testcase_11 AC 1,775 ms
138,960 KB
testcase_12 AC 1,760 ms
54,744 KB
testcase_13 AC 2,058 ms
138,524 KB
testcase_14 AC 1,825 ms
54,488 KB
testcase_15 AC 2,004 ms
137,712 KB
testcase_16 AC 1,774 ms
54,236 KB
testcase_17 AC 2,012 ms
133,304 KB
testcase_18 AC 1,942 ms
55,380 KB
testcase_19 AC 1,997 ms
139,884 KB
testcase_20 AC 2,068 ms
55,644 KB
testcase_21 AC 1,904 ms
136,752 KB
testcase_22 AC 1,758 ms
54,368 KB
testcase_23 AC 1,846 ms
54,364 KB
testcase_24 AC 2,059 ms
55,264 KB
testcase_25 AC 2,091 ms
55,512 KB
testcase_26 AC 1,926 ms
55,512 KB
testcase_27 AC 1,819 ms
55,120 KB
testcase_28 AC 2,087 ms
56,536 KB
testcase_29 AC 2,114 ms
56,356 KB
testcase_30 AC 2,050 ms
56,156 KB
testcase_31 AC 2,048 ms
56,404 KB
testcase_32 AC 2,060 ms
56,540 KB
testcase_33 AC 2,046 ms
56,236 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 TLE -
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 514 ms
44,372 KB
testcase_55 AC 506 ms
126,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve(area):
    if area.shape[0] <= 1:
        return 0
    selected_ind = area*0
    max_ind = np.argmin(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