結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 415 ms
50,952 KB
testcase_01 AC 416 ms
48,988 KB
testcase_02 AC 414 ms
51,088 KB
testcase_03 AC 478 ms
49,624 KB
testcase_04 AC 479 ms
51,204 KB
testcase_05 AC 481 ms
49,632 KB
testcase_06 AC 476 ms
51,328 KB
testcase_07 AC 499 ms
49,116 KB
testcase_08 AC 476 ms
51,076 KB
testcase_09 AC 479 ms
49,116 KB
testcase_10 AC 476 ms
51,328 KB
testcase_11 AC 1,679 ms
51,548 KB
testcase_12 AC 1,687 ms
52,988 KB
testcase_13 AC 1,929 ms
54,492 KB
testcase_14 AC 1,718 ms
53,244 KB
testcase_15 AC 1,863 ms
53,972 KB
testcase_16 AC 1,648 ms
52,996 KB
testcase_17 AC 1,885 ms
53,988 KB
testcase_18 AC 1,844 ms
54,912 KB
testcase_19 AC 1,879 ms
54,104 KB
testcase_20 AC 1,940 ms
55,804 KB
testcase_21 AC 1,807 ms
53,856 KB
testcase_22 AC 1,671 ms
52,480 KB
testcase_23 AC 1,845 ms
51,036 KB
testcase_24 AC 1,893 ms
97,080 KB
testcase_25 AC 1,933 ms
54,108 KB
testcase_26 AC 1,819 ms
96,696 KB
testcase_27 AC 1,770 ms
51,168 KB
testcase_28 AC 2,003 ms
97,984 KB
testcase_29 AC 1,945 ms
54,500 KB
testcase_30 AC 1,995 ms
97,600 KB
testcase_31 AC 1,955 ms
54,488 KB
testcase_32 AC 1,940 ms
98,104 KB
testcase_33 AC 1,945 ms
54,756 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 417 ms
43,612 KB
testcase_55 AC 426 ms
93,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve_max(area):
    next_area = np.array(area)
    count = 0
    while True:
        max_ind = np.argmax(next_area)
        min_ind = np.argmin(next_area)
        if max_ind == min_ind:
            break
        next_area = next_area[0:min_ind] if max_ind < min_ind else next_area[min_ind + 1: next_area.shape[0]]
        count += 1
    return count


def solve_min(area):
    next_area = np.array(area)
    count = 0
    while True:
        max_ind = np.argmax(next_area)
        min_ind = np.argmin(next_area)
        if max_ind == min_ind:
            break
        next_area = next_area[0:max_ind] if max_ind > min_ind else next_area[max_ind + 1: next_area.shape[0]]
        count += 1
    return count


def solve(area):
    if area.shape[0] <= 1:
        return 0
    count = solve_max(area)
    count += solve_min(area) - 1
    max_ind = np.argmax(area)
    min_ind = np.argmin(area)
    left_ind = min_ind if min_ind < max_ind else max_ind
    right_ind = min_ind if min_ind > max_ind else max_ind
    count += solve(area[0:left_ind])
    count += solve(area[left_ind+1: right_ind])
    count += solve(area[right_ind+1:area.shape[0]])
    return count


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

print(solve(input_np))
0