結果

問題 No.5020 Averaging
ユーザー PechiPechi
提出日時 2024-02-25 14:30:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,327 bytes
コンパイル時間 3,394 ms
コンパイル使用メモリ 226,728 KB
実行使用メモリ 6,676 KB
スコア 13,718,199
最終ジャッジ日時 2024-02-25 14:31:51
合計ジャッジ時間 53,610 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 953 ms
6,676 KB
testcase_01 WA -
testcase_02 AC 953 ms
6,676 KB
testcase_03 AC 954 ms
6,676 KB
testcase_04 AC 953 ms
6,676 KB
testcase_05 WA -
testcase_06 AC 953 ms
6,676 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 953 ms
6,676 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 953 ms
6,676 KB
testcase_14 AC 953 ms
6,676 KB
testcase_15 AC 978 ms
6,676 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 953 ms
6,676 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 953 ms
6,676 KB
testcase_25 AC 953 ms
6,676 KB
testcase_26 AC 953 ms
6,676 KB
testcase_27 AC 954 ms
6,676 KB
testcase_28 AC 954 ms
6,676 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 953 ms
6,676 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 953 ms
6,676 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 953 ms
6,676 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 953 ms
6,676 KB
testcase_44 AC 952 ms
6,676 KB
testcase_45 WA -
testcase_46 AC 953 ms
6,676 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 953 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#include<bits/stdc++.h>
#include<unordered_map>
#include<random>
#include <array>
#include <complex>
#include<chrono>
using namespace std;
#define LP(I,S,G) for (long long int I = (S); I < (G); ++I)
#define IN(X) 	for (int in = 0; in < X.size(); in++)cin >> X[in]
#define OUT(X) 	for (int in = 0; in < X.size(); in++)cout << X[in]<<" "
#define SORT(X) sort((X).begin(), (X).end())
#define CSORT(X,Y) sort(X.begin(), X.end(),Y)
#define COPY(X,Y) copy(X.begin(), X.end(), Y.begin())
#define ALL(X,Y) for (auto (X) :(Y))
#define FULL(a)  (a).begin(),(a).end()
#define BFS(Q,S) for(Q.push(S);Q.size()!=0;Q.pop())
typedef long long int ll;
typedef unsigned long long int ull;
long long int M = 998244353;

chrono::system_clock::time_point starttime;
using namespace std::chrono;
#ifndef ONLINE_JUDGE
#define DEBUG
#endif

inline float getTime() {
#ifdef DEBUG
	return duration_cast<milliseconds>(system_clock::now() - starttime).count() /2.0;
#else
	return duration_cast<milliseconds>(system_clock::now() - starttime).count();
#endif
}


int dx[] = { -1,0,1,0 }, dy[] = { 0,1,0,-1 };

ll MAX(ll A, ll B) { return ((A) > (B) ? (A) : (B)); }
ll MIN(ll A, ll B) { return ((A) < (B) ? (A) : (B)); }
inline long long int xor128() {
	static long long int x = 123456789, y = 362436069, z = 521288629, w = 88675123;
	long long int t = (x ^ (x << 11));
	x = y; y = z; z = w;
	return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)));
}

long long int pow_n(long long int x, long long int n) {
	if (n == 0)
		return 1;
	if (n % 2 == 0)
		return pow_n(x * x, n / 2);
	else
		return x * pow_n(x, n - 1);
}

ll border = 5 * pow_n(10, 17);

double calc_score(vector<ll> a, vector<ll> b, vector<pair<ll, ll>>& ans) {
	for (int i = 0; i < ans.size(); ++i) {
		int u = ans[i].first, v = ans[i].second;
		a[u] = a[v] = (a[u] + a[v]) / 2;
		b[u] = b[v] = (b[u] + b[v]) / 2;
	}
	return log10(max(abs(border - a[0]), abs(border - b[0])) + 1);
}

int main(int argc, char* argv[]) {
	starttime = chrono::system_clock::now();
	ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	mt19937 rnd(0);
	ll n, t = 50, now = 0;
	cin >> n;
	vector<ll> a(n), b(n);
	LP(i, 0, n)cin >> a[i] >> b[i];
	vector<pair<ll, ll>> ans(t);
	LP(i, 0, t) {
		ans[i].first = xor128() % n;
		ans[i].second = xor128() % (n - 1);
		if (ans[i].second >= ans[i].first)++ans[i].second;
	}
	double score = calc_score(a, b, ans);
	vector<int> table(t);
	for (int i = 0; i < t; ++i)table[i] = i;
	double time;
	shuffle(table.begin(), table.end(), rnd);
	while ((time=getTime()) <= 950) {
		double temp = (950 - time) / 950.0;
		int bx = ans[table[now]].first, by = ans[table[now]].second;
		ans[table[now]].first = xor128() % n;
		ans[table[now]].second = xor128() % (n - 1);
		if (ans[table[now]].second >= ans[now].first)++ans[table[now]].second;
		double new_score = calc_score(a, b, ans);
		if (xor128() % 10000 < exp((score-new_score) / temp) * 10000) {
			score = new_score;
		}
		else {
			ans[table[now]].first = bx;
			ans[table[now]].second = by;
		}
		if (++now == t) {
			now = 0;
			shuffle(table.begin(), table.end(), rnd);
		}
	}
	cerr << "score:" << ll(2000000 - 100000 * calc_score(a, b, ans)) << "\n";
	cout << ans.size() << "\n";
	ALL(x, ans)cout << x.first+1 << " " << x.second+1 << "\n";
	exit(0);
}
0