結果

問題 No.2956 Substitute with Average
ユーザー startcppstartcpp
提出日時 2024-10-25 00:16:36
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 978 bytes
コンパイル時間 1,303 ms
コンパイル使用メモリ 94,860 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-10-25 19:45:44
合計ジャッジ時間 5,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
13,636 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 3 ms
6,820 KB
testcase_04 AC 3 ms
6,816 KB
testcase_05 AC 3 ms
6,820 KB
testcase_06 AC 3 ms
6,820 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 3 ms
6,816 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

//定数倍が軽そうなもの
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
#include <iostream>
#include <vector>
#include <cassert>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

signed main() {
	cin.tie(nullptr);
 	ios_base::sync_with_stdio(false);
 	
	int i, j;
	int n;
	int a[1 << 17], ra[1 << 17] = {0};
	int b[1 << 17] = {0};
	
	cin >> n;
	rep(i, n) cin >> a[i];
	rep(i, n) ra[i + 1] = ra[i] + a[i];
	assert(1 <= n && n <= 100000);
	
	int maxA = a[0], minA = a[0];
	rep(i, n) maxA = max(maxA, a[i]);
	rep(i, n) minA = min(minA, a[i]);
	assert(maxA <= 30);
	assert(minA >= 1);

	long long ans = ((long long)n) * (n - 1) / 2 + 1;
	
	rep(i, n) b[i] = a[i];
	for (i = 2; i <= n; i++) {
		rep(j, n) b[j] += a[j];
		for (j = 0; j + i <= n; j++) { //区間[j, j + i)を確認
			if (b[j] == ra[j + i] - ra[j]) ans--;
			else if (b[j + i - 1] == ra[j + i] - ra[j]) ans--;
		}
	}

	cout << ans << endl;
	return 0;
}
0