QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#638630#7753. Energy DistributionShwStoneWA 6ms4096kbC++141.4kb2024-10-13 16:26:432024-10-13 16:26:43

Judging History

你现在查看的是最新测评结果

  • [2024-10-31 10:22:30]
  • hack成功,自动添加数据
  • (/hack/1089)
  • [2024-10-13 16:26:43]
  • 评测
  • 测评结果:WA
  • 用时:6ms
  • 内存:4096kb
  • [2024-10-13 16:26:43]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

const int MAXN(15);
const double rate(0.1);

int n;
double A[MAXN][MAXN], M[MAXN][MAXN];
double u[MAXN], v[MAXN];
double du[MAXN], dv[MAXN];

double myexp(double x) {
	if (x > 1e9) return 1e9;
	else if (x < -1e9) return 1e-9;
	return exp(x);
}

int main() {
	scanf("%d", &n);
	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= n; j++) {
			scanf("%lf", &A[i][j]);
		}
	}
	for (int i = 1; i <= n; i++) {
		for (int j = 1; j <= n; j++) {
			M[i][j] = A[i][j] + A[j][i];
		}
	}
	
	for (int epoch = 0; epoch < 100000; epoch++) {
		double sumv = 0; 
		for (int i = 1; i <= n; i++) sumv += myexp(v[i]);
		for (int i = 1; i <= n; i++) u[i] = myexp(v[i]) / sumv;
		
		for (int i = 1; i <= n; i++) {
			du[i] = 0;
			for (int j = 1; j <= n; j++) {
				du[i] += M[i][j] * u[j];
			}
		}
		for (int i = 1; i <= n; i++) {
			dv[i] = 0;
			for (int j = 1; j <= n; j++) {
				if (i == j) dv[i] += du[j] * u[j] * (1 - u[j]);
				else dv[i] -= du[j] * u[i] * u[j];
			}
		}
		for (int i = 1; i <= n; i++) v[i] += rate * dv[i];
	}


	double sumv = 0; 
	for (int i = 1; i <= n; i++) sumv += exp(v[i]);
	for (int i = 1; i <= n; i++) u[i] = exp(v[i]) / sumv;

	double ans = 0;
	for (int i = 1; i <= n; i++) {
		for (int j = i + 1; j <= n; j++) {
			ans += u[i] * u[j] * A[i][j];
		}
	}
	printf("%.9lf\n", ans);

	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 4ms
memory: 4048kb

input:

2
0 1
1 0

output:

0.250000000

result:

ok found '0.2500000', expected '0.2500000', error '0.0000000'

Test #2:

score: 0
Accepted
time: 6ms
memory: 4088kb

input:

3
0 2 1
2 0 2
1 2 0

output:

0.571428571

result:

ok found '0.5714286', expected '0.5714290', error '0.0000004'

Test #3:

score: -100
Wrong Answer
time: 6ms
memory: 4096kb

input:

3
0 1 2
1 0 1
2 1 0

output:

0.499991529

result:

wrong answer 1st numbers differ - expected: '0.5000000', found: '0.4999915', error = '0.0000085'