結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 497 ms
120,196 KB
testcase_01 AC 506 ms
51,036 KB
testcase_02 AC 512 ms
51,420 KB
testcase_03 AC 578 ms
133,988 KB
testcase_04 AC 579 ms
51,412 KB
testcase_05 AC 591 ms
131,736 KB
testcase_06 AC 583 ms
51,292 KB
testcase_07 AC 575 ms
136,308 KB
testcase_08 AC 578 ms
51,032 KB
testcase_09 AC 597 ms
133,972 KB
testcase_10 AC 536 ms
51,160 KB
testcase_11 AC 1,755 ms
136,764 KB
testcase_12 AC 1,736 ms
54,492 KB
testcase_13 AC 2,018 ms
139,056 KB
testcase_14 AC 1,809 ms
54,740 KB
testcase_15 AC 1,955 ms
136,388 KB
testcase_16 AC 1,710 ms
54,492 KB
testcase_17 AC 1,903 ms
135,628 KB
testcase_18 AC 1,901 ms
55,508 KB
testcase_19 AC 1,982 ms
139,700 KB
testcase_20 AC 2,003 ms
55,632 KB
testcase_21 AC 1,868 ms
140,464 KB
testcase_22 AC 1,674 ms
55,008 KB
testcase_23 AC 1,816 ms
135,100 KB
testcase_24 AC 1,874 ms
55,384 KB
testcase_25 AC 2,060 ms
134,764 KB
testcase_26 AC 1,934 ms
55,128 KB
testcase_27 AC 1,763 ms
127,636 KB
testcase_28 AC 1,967 ms
56,124 KB
testcase_29 AC 1,947 ms
138,604 KB
testcase_30 AC 2,045 ms
56,020 KB
testcase_31 AC 2,108 ms
135,896 KB
testcase_32 AC 2,012 ms
56,400 KB
testcase_33 AC 2,131 ms
123,540 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 485 ms
44,344 KB
testcase_55 AC 482 ms
119,060 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