結果

問題 No.2451 Redistribute Integers
ユーザー Sota_3Sota_3
提出日時 2023-09-03 08:59:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,150 bytes
コンパイル時間 1,367 ms
コンパイル使用メモリ 101,192 KB
実行使用メモリ 8,764 KB
最終ジャッジ日時 2023-09-03 08:59:06
合計ジャッジ時間 6,042 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <iostream>		//cin, cout
#include <vector>		//vector
#include <algorithm>	//sort,min,max,count
#include <string>		//string,getline, to_string
#include <cstdlib>		//abs(int)
#include <utility>		//swap, pair
#include <deque>		//deque
#include <climits>		//INT_MAX
#include <bitset>		//bitset
#include <cmath>		//sqrt, ceil. M_PI, pow, sin
#include <ios>			//fixed
#include <iomanip>		//setprecision
#include <sstream>		//stringstream
#include <numeric>		//gcd, assumlate
#include <random>		//randam_device
#include <limits>		//numeric_limits

using namespace std;
constexpr long long int D_MOD = 1000000007;

int main() {

	int N;
	cin >> N;

	long long int sum = 0;
	vector<int> A(N), B(N);

	for (int i = 0; i < N; i++) {
		cin >> A[i];
		sum += A[i];
	}

	if (sum % N == 1) {
		cout << "No" << endl;
		return 0;
	}

	sort(A.begin(), A.end());

	while (1) {
		if (A[0] == A[N - 1]) {
			cout << "Yes" << endl;
			return 0;
		}

		B = A;
		for (int i = 0; i < N; i++) {
			B[i]++;
		}
		B[N - 1] -= N;
		sort(B.begin(), B.end());

		if (A == B) {
			cout << "No" << endl;
			return 0;
		}
		A = B;

	}

	return 0;

}
0