結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー MNGOFMNGOF
提出日時 2020-04-27 01:09:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,742 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 849,316 KB
最終ジャッジ日時 2024-11-19 05:30:36
合計ジャッジ時間 60,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
61,168 KB
testcase_01 AC 40 ms
60,384 KB
testcase_02 AC 40 ms
59,224 KB
testcase_03 AC 116 ms
338,276 KB
testcase_04 AC 116 ms
84,084 KB
testcase_05 AC 119 ms
336,668 KB
testcase_06 AC 119 ms
77,888 KB
testcase_07 AC 123 ms
78,304 KB
testcase_08 AC 118 ms
77,560 KB
testcase_09 AC 118 ms
77,788 KB
testcase_10 AC 108 ms
76,936 KB
testcase_11 AC 349 ms
91,280 KB
testcase_12 AC 347 ms
92,388 KB
testcase_13 AC 379 ms
97,624 KB
testcase_14 AC 351 ms
92,304 KB
testcase_15 AC 362 ms
95,772 KB
testcase_16 AC 354 ms
93,268 KB
testcase_17 AC 363 ms
94,600 KB
testcase_18 AC 369 ms
93,448 KB
testcase_19 AC 378 ms
96,728 KB
testcase_20 AC 383 ms
95,632 KB
testcase_21 AC 372 ms
94,272 KB
testcase_22 AC 350 ms
91,984 KB
testcase_23 AC 357 ms
95,076 KB
testcase_24 AC 360 ms
93,120 KB
testcase_25 AC 374 ms
94,428 KB
testcase_26 AC 358 ms
93,908 KB
testcase_27 AC 360 ms
93,576 KB
testcase_28 AC 360 ms
93,652 KB
testcase_29 AC 387 ms
96,724 KB
testcase_30 AC 379 ms
96,440 KB
testcase_31 AC 382 ms
95,468 KB
testcase_32 AC 384 ms
95,160 KB
testcase_33 AC 388 ms
98,932 KB
testcase_34 AC 63 ms
79,736 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 RE -
testcase_43 AC 2,088 ms
345,988 KB
testcase_44 AC 1,618 ms
451,160 KB
testcase_45 AC 1,687 ms
293,732 KB
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 AC 100 ms
79,124 KB
testcase_52 AC 70 ms
78,692 KB
testcase_53 AC 83 ms
78,712 KB
testcase_54 AC 42 ms
52,484 KB
testcase_55 AC 40 ms
314,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(area):
    if len(area) <= 1:
        return 0
    selected_ind = [0] * len(area)
    max_ind = area.index(max(area))
    min_ind = max_ind
    for i in reversed(range(max_ind)):
        if area[min_ind] > area[i]:
            min_ind = i
            selected_ind[min_ind] = 1
    min_ind = max_ind
    for i in range(max_ind+1, len(area)):
        if area[min_ind] > area[i]:
            min_ind = i
            selected_ind[min_ind] = 1
    count = sum(selected_ind)

    tmp_sum = sum(selected_ind[0:max_ind])
    tmp_len = len(selected_ind[0:max_ind])
    if tmp_len == tmp_sum and tmp_len > 2:
        count += int(tmp_sum * (tmp_sum - 1) / 2)
    else:
        next_left_ind = max_ind
        if next_left_ind > 0:
            while area.index(max(area[0:next_left_ind])) == (next_left_ind - 1):
                tmp_sum -= 1
                count += tmp_sum
                next_left_ind -= 1
                if next_left_ind < 1:
                    break
        count += solve(area[0:next_left_ind])

    tmp_sum = sum(selected_ind[max_ind + 1: len(area)])
    tmp_len = len(selected_ind[max_ind + 1: len(area)])
    if tmp_len == tmp_sum and tmp_len > 2:
        count += int(tmp_sum * (tmp_sum - 1) / 2)
    else:
        next_right_ind = max_ind
        if next_right_ind < len(area) - 1:
            while area.index(max(area[next_right_ind + 1: len(area)])) == 0:
                tmp_sum -= 1
                count += tmp_sum
                next_right_ind += 1
                if next_right_ind > len(area) - 1:
                    break
        count += solve(area[next_right_ind + 1: len(area)])
    return int(count)
    

N = int(input())
data = input().split()
Input = [int(s) for s in data]

print(solve(Input))
0