結果

問題 No.1435 Mmm......
ユーザー nok0nok0
提出日時 2021-03-20 00:12:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 78,032 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-04-29 20:12:53
合計ジャッジ時間 2,804 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 31 ms
5,376 KB
testcase_07 AC 37 ms
5,376 KB
testcase_08 AC 43 ms
5,376 KB
testcase_09 AC 40 ms
5,376 KB
testcase_10 AC 34 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 32 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 44 ms
5,376 KB
testcase_16 AC 37 ms
5,376 KB
testcase_17 AC 27 ms
5,376 KB
testcase_18 AC 45 ms
5,376 KB
testcase_19 AC 33 ms
5,376 KB
testcase_20 AC 41 ms
5,376 KB
testcase_21 AC 96 ms
13,696 KB
testcase_22 AC 124 ms
11,008 KB
testcase_23 AC 52 ms
5,376 KB
testcase_24 AC 52 ms
5,376 KB
testcase_25 AC 52 ms
5,376 KB
testcase_26 AC 53 ms
5,376 KB
testcase_27 AC 52 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <vector>

long long res;
int n, a[200000];
std::multiset<int> st;
int main() {
	scanf("%d", &n);
	for(int i = 0; i < n; i++) scanf("%d", &a[i]);
	for(int l = 0, r = 0; l < n; res += r - l - 1, st.erase(st.lower_bound((a[l++])))) {
		while(r < n) {
			st.insert(a[r]);
			int tmp = *st.begin() + *(++st.begin()) - *st.rbegin();
			if(tmp < 0) {
				st.erase(st.lower_bound(a[r]));
				break;
			}
			r++;
		}
	}
	printf("%lld\n", res);
}
0