結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 481 ms
49,968 KB
testcase_01 AC 473 ms
51,008 KB
testcase_02 AC 507 ms
49,464 KB
testcase_03 AC 531 ms
135,708 KB
testcase_04 AC 529 ms
49,848 KB
testcase_05 AC 549 ms
132,512 KB
testcase_06 AC 524 ms
49,836 KB
testcase_07 AC 529 ms
136,824 KB
testcase_08 AC 520 ms
49,844 KB
testcase_09 AC 520 ms
133,976 KB
testcase_10 AC 547 ms
49,588 KB
testcase_11 AC 1,658 ms
139,684 KB
testcase_12 AC 1,680 ms
52,912 KB
testcase_13 AC 1,970 ms
132,684 KB
testcase_14 AC 1,709 ms
53,172 KB
testcase_15 AC 1,938 ms
139,480 KB
testcase_16 AC 1,740 ms
52,916 KB
testcase_17 AC 1,893 ms
135,852 KB
testcase_18 AC 1,828 ms
54,064 KB
testcase_19 AC 1,876 ms
140,756 KB
testcase_20 AC 2,035 ms
54,448 KB
testcase_21 AC 1,807 ms
139,708 KB
testcase_22 AC 1,647 ms
53,168 KB
testcase_23 AC 1,734 ms
136,716 KB
testcase_24 AC 1,961 ms
55,384 KB
testcase_25 AC 1,937 ms
136,056 KB
testcase_26 AC 1,826 ms
53,680 KB
testcase_27 AC 1,790 ms
129,800 KB
testcase_28 AC 1,971 ms
54,584 KB
testcase_29 AC 2,014 ms
138,244 KB
testcase_30 AC 2,044 ms
54,580 KB
testcase_31 AC 1,957 ms
138,056 KB
testcase_32 AC 1,932 ms
54,840 KB
testcase_33 AC 2,064 ms
124,972 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 483 ms
44,188 KB
testcase_55 AC 469 ms
119,580 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