結果

問題 No.1435 Mmm......
ユーザー nok0nok0
提出日時 2021-03-20 00:14:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 3,058 ms
コンパイル使用メモリ 153,660 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-04-29 20:14:36
合計ジャッジ時間 5,345 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 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 32 ms
5,376 KB
testcase_07 AC 37 ms
5,376 KB
testcase_08 AC 45 ms
5,376 KB
testcase_09 AC 41 ms
5,376 KB
testcase_10 AC 35 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 33 ms
5,376 KB
testcase_13 AC 32 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 45 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 34 ms
5,376 KB
testcase_20 AC 42 ms
5,376 KB
testcase_21 AC 95 ms
13,184 KB
testcase_22 AC 123 ms
10,624 KB
testcase_23 AC 53 ms
5,376 KB
testcase_24 AC 53 ms
5,376 KB
testcase_25 AC 53 ms
5,376 KB
testcase_26 AC 52 ms
5,376 KB
testcase_27 AC 52 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main(){scanf("%d",&n);
      | ^~~~

ソースコード

diff #

#include<atcoder/all>
#include<set>
long long res;
int n,i,a[200000];
std::multiset<int>st;
main(){scanf("%d",&n);
	for(i=0;i<n;)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