結果

問題 No.2938 Sigma Sigma Distance Distance Problem
ユーザー elphe
提出日時 2025-02-14 11:51:10
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 86,700 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2025-02-14 11:51:12
合計ジャッジ時間 2,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	
	uint32_t N, i, j;
	cin >> N;
	vector<uint32_t> A(N);
	for (i = 0; i != N; ++i) cin >> A[i];

	uint64_t ans = 0;
	vector<uint64_t> index_csum(501, 0);
	vector<uint32_t> count(501, 0);
	for (i = 0; i != N; ++i)
	{
		++count[A[i]], index_csum[A[i]] += i;
		for (j = 1; j != A[i]; ++j)
			ans += (static_cast<uint64_t>(count[j]) * i - index_csum[j]) * (A[i] - j);
		for (++j; j != 501; ++j)
			ans += (static_cast<uint64_t>(count[j]) * i - index_csum[j]) * (j - A[i]);
	}

	cout << (ans << 1) << '\n';
	return 0;
}
0