QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#107266#5444. Tavern Chesswarner1129#AC ✓1111ms3752kbC++202.5kb2023-05-20 17:45:222023-05-20 17:45:26

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-20 17:45:26]
  • 评测
  • 测评结果:AC
  • 用时:1111ms
  • 内存:3752kb
  • [2023-05-20 17:45:22]
  • 提交

answer

#include <bits/stdc++.h>

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/hash_policy.hpp>
#include <ext/pb_ds/priority_queue.hpp>

using namespace std;
using namespace __gnu_pbds;

#ifdef LOCAL
void dbg() { cerr << '\n'; }
template<class T, class ...U> void dbg(T a, U ...b) { cerr << a << ' ', dbg(b...); }
template<class T> void org(T l, T r) { while (l != r) cerr << *l++ << ' '; cerr << '\n'; }
#define debug(args...) (dbg("(" + string(#args) + ") = (", args, ")"))
#define orange(args...) (cerr << "[" + string(#args) + ") = ", org(args))
#else
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#define debug(...) ((void)0)
#define orange(...) ((void)0)
#endif
template<class T> bool chmin(T &a, T b) { return b < a and (a = b, true); }
template<class T> bool chmax(T &a, T b) { return b > a and (a = b, true); }
#define all(v) begin(v), end(v)
#define rall(v) rbegin(v), rend(v)
#define ff first
#define ss second
typedef pair<int, int> pii;
typedef pair<long long, long long> pll;
typedef pair<double, double> pdd;

template<class T>
using BST = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

constexpr int INF = 1<<30;
constexpr long long mod = 998244353;

void solve() {
	int n, m;
	cin >> n >> m;

	using data = vector<array<int, 3>>;
	data A(n), B(m);
	for (auto &[a, b, c] : A) cin >> a, b = a, c = 0;
	for (auto &[a, b, c] : B) cin >> a, b = a, c = 0;

	array<double, 3> cnt{};

	function<void(data, data, int, double)> dfs = [&](data A, data B, int f, double p) -> void {
		if (A.empty() and B.empty()) return void(cnt[2] += p);
		if (B.empty()) return void(cnt[0 ^ f] += p);
		if (A.empty()) return void(cnt[1 ^ f] += p);
		int s = 0;
		for (int i = 0; i < A.size(); i++) if (A[i][2] < A[s][2]) s = i;
		A[s][2]++;
		double ch = B.size();
		for (int i = 0; i < B.size(); i++) {
			debug(s, i);
			auto ta = A, tb = B;
			ta[s][0] -= tb[i][1];
			tb[i][0] -= ta[s][1];
			//ta[p][1] = ta[p][0], tb[i][1] = tb[i][0];
			//tb[i][2]++;
			if (ta[s][0] <= 0) ta.erase(begin(ta) + s);
			if (tb[i][0] <= 0) tb.erase(begin(tb) + i);
			dfs(tb, ta, f ^ 1, p / ch);
		}
	};

	double p = (A.size() == B.size()) ? 0.5 : 1;
	if (A.size() >= B.size()) dfs(A, B, 0, p);
	if (B.size() >= A.size()) dfs(B, A, 1, p);

	cout << fixed << setprecision(16);
	for (double x : cnt)
		cout << x << '\n';
}
 
signed main() {
	ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
	int T = 1;
	// cin >> T;
	while (T--) solve();
	return 0;
}

/*

2 3
2 5
3 4 1

6 6
1 1 4 5 1 4
1 1 4 5 1 4 

*/



詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3740kb

input:

2 3
2 5
3 4 1

output:

0.1250000000000000
0.7500000000000000
0.1250000000000000

result:

ok 3 numbers

Test #2:

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

input:

6 6
1 1 4 5 1 4
1 1 4 5 1 4

output:

0.2418672839506247
0.2418672839506198
0.5162654320987765

result:

ok 3 numbers

Test #3:

score: 0
Accepted
time: 1ms
memory: 3592kb

input:

7 7
1 1 1 1 1 1 1
1 1 1 1 1 1 1

output:

0.0000000000000000
0.0000000000000000
0.9999999999999966

result:

ok 3 numbers

Test #4:

score: 0
Accepted
time: 2ms
memory: 3596kb

input:

1 7
7
1 1 1 1 1 1 1

output:

0.0000000000000000
0.0000000000000000
1.0000000000000007

result:

ok 3 numbers

Test #5:

score: 0
Accepted
time: 2ms
memory: 3592kb

input:

2 3
736618938 652769331
328875880 97571721 44608905

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #6:

score: 0
Accepted
time: 1ms
memory: 3744kb

input:

5 4
53585130 731696211 668322278 611205195 158818781
569587984 776042583 745745433 330119007

output:

0.0668402777777778
0.6643518518518522
0.2688078703703703

result:

ok 3 numbers

Test #7:

score: 0
Accepted
time: 2ms
memory: 3600kb

input:

7 2
578505806 551611151 92903265 403642038 542119417 57334031 307573613
897644535 168524310

output:

0.9999999999999992
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #8:

score: 0
Accepted
time: 5ms
memory: 3580kb

input:

5 6
113196606 64768263 772808463 787707989 500151952
481840741 676847825 4641268 431386165 847736311 169677832

output:

0.1363231738683136
0.5223971836419663
0.3412796424897230

result:

ok 3 numbers

Test #9:

score: 0
Accepted
time: 17ms
memory: 3608kb

input:

6 6
260666773 527612597 471926610 702232282 559007797 606173983
560573055 928117268 101411867 875949818 907478252 182117037

output:

0.0000000000000000
0.9608195730454391
0.0391804269547329

result:

ok 3 numbers

Test #10:

score: 0
Accepted
time: 2ms
memory: 3740kb

input:

3 3
333377599 3066695 67916629
426841530 865184552 974638244

output:

0.0000000000000000
1.0000000000000002
0.0000000000000000

result:

ok 3 numbers

Test #11:

score: 0
Accepted
time: 2ms
memory: 3604kb

input:

1 1
529429019
529428649

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #12:

score: 0
Accepted
time: 2ms
memory: 3588kb

input:

3 3
12886596 817437415 465037461
12886473 817437448 465037967

output:

0.0694444444444444
0.6527777777777778
0.2777777777777778

result:

ok 3 numbers

Test #13:

score: 0
Accepted
time: 27ms
memory: 3716kb

input:

6 6
211213374 319527017 257080158 176742665 53109345 33822515
53109265 319527076 176743175 257080012 211212799 33822353

output:

0.4233999592763577
0.3193865847908192
0.2572134559327303

result:

ok 3 numbers

Test #14:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

1 2
1
1 1

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #15:

score: 0
Accepted
time: 2ms
memory: 3604kb

input:

1 2
1
1 3

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #16:

score: 0
Accepted
time: 2ms
memory: 3712kb

input:

1 2
2
4 2

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #17:

score: 0
Accepted
time: 2ms
memory: 3564kb

input:

1 2
3
5 5

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #18:

score: 0
Accepted
time: 2ms
memory: 3632kb

input:

1 2
4
1 2

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #19:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

1 2
5
2 5

output:

0.0000000000000000
0.0000000000000000
1.0000000000000000

result:

ok 3 numbers

Test #20:

score: 0
Accepted
time: 1ms
memory: 3572kb

input:

1 2
5
5 5

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #21:

score: 0
Accepted
time: 2ms
memory: 3740kb

input:

2 2
1 1
1 3

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #22:

score: 0
Accepted
time: 2ms
memory: 3596kb

input:

2 2
1 1
2 3

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #23:

score: 0
Accepted
time: 2ms
memory: 3712kb

input:

2 2
1 4
2 5

output:

0.0000000000000000
0.5000000000000000
0.5000000000000000

result:

ok 3 numbers

Test #24:

score: 0
Accepted
time: 2ms
memory: 3736kb

input:

2 2
2 2
1 4

output:

0.0000000000000000
0.0000000000000000
1.0000000000000000

result:

ok 3 numbers

Test #25:

score: 0
Accepted
time: 2ms
memory: 3632kb

input:

2 2
3 2
4 1

output:

0.0000000000000000
0.5000000000000000
0.5000000000000000

result:

ok 3 numbers

Test #26:

score: 0
Accepted
time: 2ms
memory: 3740kb

input:

2 2
3 3
1 3

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #27:

score: 0
Accepted
time: 2ms
memory: 3604kb

input:

2 2
3 3
2 4

output:

0.0000000000000000
0.0000000000000000
1.0000000000000000

result:

ok 3 numbers

Test #28:

score: 0
Accepted
time: 2ms
memory: 3712kb

input:

2 2
3 3
5 3

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #29:

score: 0
Accepted
time: 2ms
memory: 3612kb

input:

2 2
4 3
2 1

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #30:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

2 2
4 3
4 4

output:

0.0000000000000000
1.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #31:

score: 0
Accepted
time: 2ms
memory: 3680kb

input:

2 2
5 1
5 2

output:

0.1250000000000000
0.6250000000000000
0.2500000000000000

result:

ok 3 numbers

Test #32:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

2 2
5 1
5 3

output:

0.1250000000000000
0.6250000000000000
0.2500000000000000

result:

ok 3 numbers

Test #33:

score: 0
Accepted
time: 2ms
memory: 3736kb

input:

2 2
5 2
2 3

output:

0.8750000000000000
0.0000000000000000
0.1250000000000000

result:

ok 3 numbers

Test #34:

score: 0
Accepted
time: 2ms
memory: 3612kb

input:

2 2
5 4
1 2

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #35:

score: 0
Accepted
time: 2ms
memory: 3604kb

input:

2 2
5 4
3 5

output:

0.8750000000000000
0.0000000000000000
0.1250000000000000

result:

ok 3 numbers

Test #36:

score: 0
Accepted
time: 2ms
memory: 3740kb

input:

2 2
5 5
1 4

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #37:

score: 0
Accepted
time: 2ms
memory: 3588kb

input:

2 2
5 5
2 2

output:

1.0000000000000000
0.0000000000000000
0.0000000000000000

result:

ok 3 numbers

Test #38:

score: 0
Accepted
time: 2ms
memory: 3540kb

input:

1 1
6
6

output:

0.0000000000000000
0.0000000000000000
1.0000000000000000

result:

ok 3 numbers

Test #39:

score: 0
Accepted
time: 2ms
memory: 3544kb

input:

5 5
6 5 9 9 3
3 5 9 9 6

output:

0.2978703703703703
0.2787731481481486
0.4233564814814814

result:

ok 3 numbers

Test #40:

score: 0
Accepted
time: 15ms
memory: 3712kb

input:

6 6
10 2 3 4 5 7
5 2 4 3 10 7

output:

0.2540104568544440
0.1927737054183697
0.5532158377272731

result:

ok 3 numbers

Test #41:

score: 0
Accepted
time: 120ms
memory: 3604kb

input:

7 7
7 6 8 6 7 3 9
7 6 9 8 7 3 6

output:

0.3109137514255877
0.3657683679136552
0.3233178806601905

result:

ok 3 numbers

Test #42:

score: 0
Accepted
time: 8ms
memory: 3636kb

input:

6 6
5 4 7 9 9 10
9 4 9 7 5 10

output:

0.2169424350565896
0.3278565457819070
0.4552010191615330

result:

ok 3 numbers

Test #43:

score: 0
Accepted
time: 2ms
memory: 3608kb

input:

4 4
9 7 10 6
9 7 6 10

output:

0.3308738425925925
0.2622974537037037
0.4068287037037038

result:

ok 3 numbers

Test #44:

score: 0
Accepted
time: 2ms
memory: 3712kb

input:

3 3
3 10 3
3 10 3

output:

0.1875000000000000
0.1875000000000000
0.6250000000000000

result:

ok 3 numbers

Test #45:

score: 0
Accepted
time: 1ms
memory: 3612kb

input:

2 2
3 4
3 4

output:

0.0000000000000000
0.0000000000000000
1.0000000000000000

result:

ok 3 numbers

Test #46:

score: 0
Accepted
time: 276ms
memory: 3752kb

input:

7 7
922750124 99645786 685060385 948410807 266950246 996521461 883971852
266950246 99645786 883971852 685060385 922750124 996521461 948410807

output:

0.3633563714164839
0.2795664055114255
0.3570772230717241

result:

ok 3 numbers

Test #47:

score: 0
Accepted
time: 359ms
memory: 3600kb

input:

7 7
241155912 361580213 393947982 781406405 485516551 277202028 115028196
485516551 361580213 115028196 393947982 241155912 277202028 781406405

output:

0.3701760935994952
0.2787899453032870
0.3510339610962164

result:

ok 3 numbers

Test #48:

score: 0
Accepted
time: 191ms
memory: 3748kb

input:

7 7
565748008 734938287 873800405 879803305 473331973 893190834 623040014
473331973 734938287 623040014 873800405 565748008 893190834 879803305

output:

0.3643059080164515
0.3156035542268161
0.3200905377560830

result:

ok 3 numbers

Test #49:

score: 0
Accepted
time: 627ms
memory: 3612kb

input:

7 7
14 4 6 5 201506030 15 15
4 14 201506030 15 15 6 5

output:

0.1781837916522517
0.3370815098695250
0.4847346984739897

result:

ok 3 numbers

Test #50:

score: 0
Accepted
time: 351ms
memory: 3716kb

input:

7 7
3 2 3 5 784861968 2 1
2 3 784861968 1 2 3 5

output:

0.2230750218732140
0.3161515802329026
0.4607733978930332

result:

ok 3 numbers

Test #51:

score: 0
Accepted
time: 900ms
memory: 3616kb

input:

7 7
8 15 3 9 168061718 2 5
15 8 168061718 5 2 3 9

output:

0.2129695959879126
0.3199629950665241
0.4670674089421608

result:

ok 3 numbers

Test #52:

score: 0
Accepted
time: 322ms
memory: 3588kb

input:

7 7
859736717 19 19 18 13 10 7
7 10 13 18 19 19 859736717

output:

0.3936206525951288
0.1479672662516564
0.4584120811531627

result:

ok 3 numbers

Test #53:

score: 0
Accepted
time: 435ms
memory: 3584kb

input:

7 7
761045932 18 13 11 9 7 6
6 7 9 11 13 18 761045932

output:

0.3824676895550182
0.1474932386547379
0.4700390717897552

result:

ok 3 numbers

Test #54:

score: 0
Accepted
time: 502ms
memory: 3688kb

input:

7 7
379524878 17 16 14 10 6 1
1 6 10 14 16 17 379524878

output:

0.3792602932996429
0.1765367220800902
0.4442029846197540

result:

ok 3 numbers

Test #55:

score: 0
Accepted
time: 565ms
memory: 3608kb

input:

7 7
986258805 329018732 16 14 10 10 4
4 10 10 14 16 329018732 986258805

output:

0.3352065235080252
0.1682281864819384
0.4965652900095727

result:

ok 3 numbers

Test #56:

score: 0
Accepted
time: 556ms
memory: 3716kb

input:

7 7
402437510 39859989 20 20 18 17 7
7 17 18 20 20 39859989 402437510

output:

0.3286994736431177
0.1602630582688008
0.5110374680875299

result:

ok 3 numbers

Test #57:

score: 0
Accepted
time: 665ms
memory: 3604kb

input:

7 7
719895666 88341845 15 11 10 6 5
5 6 10 11 15 88341845 719895666

output:

0.3415410587627389
0.1694365966658307
0.4890223445707083

result:

ok 3 numbers

Test #58:

score: 0
Accepted
time: 919ms
memory: 3584kb

input:

7 7
22 657372492 8 20 531193761 10 21
8 22 20 657372492 531193761 21 10

output:

0.2830320358586992
0.2143316414027696
0.5026363227393225

result:

ok 3 numbers

Test #59:

score: 0
Accepted
time: 1111ms
memory: 3712kb

input:

7 7
8 559730577 2 23 543514141 3 24
2 8 23 559730577 543514141 24 3

output:

0.2836816165842985
0.2220157134494611
0.4943026699679049

result:

ok 3 numbers

Test #60:

score: 0
Accepted
time: 726ms
memory: 3612kb

input:

7 7
24 416408320 4 25 698151361 24 15
4 24 25 416408320 698151361 15 24

output:

0.2975163684431535
0.2472865869676328
0.4551970445900092

result:

ok 3 numbers