結果

問題 No.2956 Substitute with Average
ユーザー startcppstartcpp
提出日時 2024-10-23 23:30:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 715 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 80,252 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-25 19:45:19
合計ジャッジ時間 3,570 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

//小さなケースを全探索して正しいかを検証
//浮動小数点数の誤差があってWAになる可能性はあるかも
#include <iostream>
#include <vector>
#include <set>
#include <cassert>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

int main() {
	int n;
	int a[300];
	cin >> n;
	assert(n <= 300);

	int i, j, k;
	rep(i, n) cin >> a[i];

	set<vector<double>> st;
	rep(i, n) {
		for (j = i; j < n; j++) {
			double ave = 0;
			for (k = i; k <= j; k++) ave += a[k];
			ave /= (double)(j - i + 1);
			
			vector<double> b;
			rep(k, n) {
				if (i <= k && k <= j) b.push_back(ave);
				else b.push_back(a[k]);
			}
			st.insert(b);
		}
	}

	cout << st.size() << endl;
	return 0;
}
0