QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#589262 | #5444. Tavern Chess | N_z_ | AC ✓ | 702ms | 4072kb | C++14 | 7.4kb | 2024-09-25 16:56:21 | 2024-09-25 16:56:24 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
struct time_helper{
#ifdef LOCAL
clock_t time_last;time_helper(){time_last=clock();}void test(){auto time_now=clock();std::cerr<<"time:"<<1.*(time_now-time_last)/CLOCKS_PER_SEC<<";all_time:"<<1.*time_now/CLOCKS_PER_SEC<<std::endl;time_last=time_now;}~time_helper(){test();}
#else
void test(){}
#endif
}time_helper;
#ifdef LOCAL
#include"dbg.h"
#else
#define dbg(...) (__VA_ARGS__)
#endif
namespace Fread{const int SIZE=1<<16;char buf[SIZE],*S,*T;inline char getchar(){if(S==T){T=(S=buf)+fread(buf,1,SIZE,stdin);if(S==T)return'\n';}return *S++;}}namespace Fwrite{const int SIZE=1<<16;char buf[SIZE],*S=buf,*T=buf+SIZE;inline void flush(){fwrite(buf,1,S-buf,stdout);S=buf;}inline void putchar(char c){*S++=c;if(S==T)flush();}struct NTR{~NTR(){flush();}}ztr;}
#define getchar Fread::getchar
#define putchar Fwrite::putchar
int print_precision=10;bool print_T_endl=1;char print_between=' ';
template<typename T>struct is_char{static constexpr bool value=(std::is_same<T,char>::value||std::is_same<T,signed char>::value||std::is_same<T,unsigned char>::value);};template<typename T>struct is_integral_ex{static constexpr bool value=(std::is_integral<T>::value||std::is_same<T,__int128>::value)&&!is_char<T>::value;};template<typename T>struct is_floating_point_ex{static constexpr bool value=std::is_floating_point<T>::value||std::is_same<T,__float128>::value;};namespace Fastio{struct Reader;struct Writer;template<size_t id>struct read_tuple{template<typename...T>static void read(Reader&stream,std::tuple<T...>&x){read_tuple<id-1>::read(stream,x);stream>>get<id-1>(x);}};template<>struct read_tuple<0>{template<typename...T>static void read([[maybe_unused]]Reader&stream,[[maybe_unused]]std::tuple<T...>&x){}};template<size_t id>struct print_tuple{template<typename...T>static void print(Writer&stream,const std::tuple<T...>&x){print_tuple<id-1>::print(stream,x);putchar(print_between);stream<<get<id-1>(x);}};template<>struct print_tuple<1>{template<typename...T>static void print(Writer&stream,const std::tuple<T...>&x){stream<<get<0>(x);}};template<>struct print_tuple<0>{template<typename...T>static void print([[maybe_unused]]Writer&stream,[[maybe_unused]]const std::tuple<T...>&x){}};
struct Reader{template<typename T>typename std::enable_if_t<std::is_class<T>::value,Reader&>operator>>(T&x){for(auto &y:x)*this>>y;return *this;}template<typename...T>Reader&operator>>(std::tuple<T...>&x){read_tuple<sizeof...(T)>::read(*this,x);return *this;}template<typename T>typename std::enable_if_t<is_integral_ex<T>::value,Reader&>operator>>(T&x){char c=getchar();short f=1;while(c<'0'||c>'9'){if(c=='-')f*=-1;c=getchar();}x=0;while(c>='0'&&c<='9'){x=(x<<1)+(x<<3)+(c^48);c=getchar();}x*=f;return *this;}template<typename T>typename std::enable_if_t<is_floating_point_ex<T>::value,Reader&>operator>>(T&x){char c=getchar();short f=1,s=0;x=0;T t=0;while((c<'0'||c>'9')&&c!='.'){if(c=='-')f*=-1;c=getchar();}while(c>='0'&&c<='9'&&c!='.')x=x*10+(c^48),c=getchar();if(c=='.')c=getchar();else return x*=f,*this;while(c>='0'&&c<='9')t=t*10+(c^48),s++,c=getchar();while(s--)t/=10.0;x=(x+t)*f;return*this;}template<typename T>typename std::enable_if_t<is_char<T>::value,Reader&>operator>>(T&c){c=getchar();while(c=='\n'||c==' '||c=='\r')c=getchar();return *this;}Reader&operator>>(char*str){int len=0;char c=getchar();while(c=='\n'||c==' '||c=='\r')c=getchar();while(c!='\n'&&c!=' '&&c!='\r')str[len++]=c,c=getchar();str[len]='\0';return*this;}template<typename T1,typename T2>Reader&operator>>(std::pair<T1,T2>&x){*this>>x.first>>x.second;return *this;}Reader&operator>>(std::string&str){str.clear();char c=getchar();while(c=='\n'||c==' '||c=='\r')c=getchar();while(c!='\n'&&c!=' '&&c!='\r')str.push_back(c),c=getchar();return*this;}Reader(){}}cin;const char endl='\n';
struct Writer{typedef __int128 mxdouble;template<typename T>typename std::enable_if_t<std::is_class<T>::value,Writer&>operator<<(const T&x){for(auto q:x){*this<<q;if(!is_class<decltype(q)>::value)*this<<print_between;}if(!is_class<typename T::value_type>::value&&print_T_endl)*this<<'\n';return *this;}template<typename...T>Writer&operator<<(const std::tuple<T...>&x){print_tuple<sizeof...(T)>::print(*this,x);if(print_T_endl)*this<<'\n';return *this;}template<typename T>typename std::enable_if_t<is_integral_ex<T>::value,Writer&>operator<<(T x){if(x==0)return putchar('0'),*this;if(x<0)putchar('-'),x=-x;static int sta[45];int top=0;while(x)sta[++top]=x%10,x/=10;while(top)putchar(sta[top]+'0'),--top;return*this;}template<typename T>typename std::enable_if_t<is_floating_point_ex<T>::value,Writer&>operator<<(T x){if(x<0)putchar('-'),x=-x;x+=pow(10,-print_precision)/2;mxdouble _=x;x-=(T)_;static int sta[45];int top=0;while(_)sta[++top]=_%10,_/=10;if(!top)putchar('0');while(top)putchar(sta[top]+'0'),--top;putchar('.');for(int i=0;i<print_precision;i++)x*=10;_=x;while(_)sta[++top]=_%10,_/=10;for(int i=0;i<print_precision-top;i++)putchar('0');while(top)putchar(sta[top]+'0'),--top;return*this;}template<typename T>typename std::enable_if_t<is_char<T>::value,Writer&>operator<<(const T&c){putchar(c);return*this;}Writer&operator<<(char*str){int cur=0;while(str[cur])putchar(str[cur++]);return *this;}Writer&operator<<(const char*str){int cur=0;while(str[cur])putchar(str[cur++]);return*this;}template<typename T1,typename T2>Writer&operator<<(const std::pair<T1,T2>&x){*this<<x.first<<print_between<<x.second;if(print_T_endl)*this<<'\n';return *this;}Writer&operator<<(const std::string&str){int st=0,ed=str.size();while(st<ed)putchar(str[st++]);return*this;}Writer(){}}cout;}
#define cin Fastio::cin
#define cout Fastio::cout
#define endl Fastio::endl
template<class Fun>class y_combinator_result{Fun fun_;public:template<class T>explicit y_combinator_result(T &&fun): fun_(std::forward<T>(fun)) {}template<class ...Args>decltype(auto) operator()(Args &&...args){return fun_(std::ref(*this), std::forward<Args>(args)...);}};template<class Fun>decltype(auto) y_combinator(Fun &&fun){return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));}
void init();void solve(int tc);
main()
{
init();int t=1;
// cin>>t;
for(int tc=1;tc<=t;tc++)solve(tc);
}
void init()
{
}
double ans[3];
pair<vector<tuple<int,int,int>>,vector<tuple<int,int,int>>>trans(vector<tuple<int,int,int>>a,vector<tuple<int,int,int>>b,int posa,int posb)
{
get<0>(a[posa])++;
int fl1=0,fl2=0;
if(get<2>(a[posa])>get<1>(b[posb]))get<2>(a[posa])-=get<1>(b[posb]);
else fl1=1;
if(get<2>(b[posb])>get<1>(a[posa]))get<2>(b[posb])-=get<1>(a[posa]);
else fl2=1;
if(fl1)a.erase(a.begin()+posa);
if(fl2)b.erase(b.begin()+posb);
return {a,b};
}
void dfs(const vector<tuple<int,int,int>>&a,const vector<tuple<int,int,int>>&b,int op,double prob)
{
// dbg(a,b,op,prob);
if(a.empty()&&b.empty()){ans[2]+=prob;return;}
if(a.empty()){ans[!op]+=prob;return;}
if(b.empty()){ans[op]+=prob;return;}
int mi=1e9;
for(int x=0;x<a.size();x++)
mi=min(mi,get<0>(a[x]));
prob/=b.size();
for(int x=0;x<a.size();x++)
if(get<0>(a[x])==mi)
{
for(int y=0;y<b.size();y++)
{
auto [a_,b_]=trans(a,b,x,y);
dfs(b_,a_,!op,prob);
}
break;
}
}
void solve([[maybe_unused]]int tc)
{
int n,m;
cin>>n>>m;
vector<tuple<int,int,int>>a(n),b(m);
for(auto &[_,q,r]:a)cin>>q,r=q;
for(auto &[_,q,r]:b)cin>>q,r=q;
if(a.size()>b.size())dfs(a,b,0,1);
else if(b.size()>a.size())dfs(b,a,1,1);
else dfs(a,b,0,0.5),dfs(b,a,1,0.5);
cout<<ans[0]<<endl<<ans[1]<<endl<<ans[2]<<endl;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3812kb
input:
2 3 2 5 3 4 1
output:
0.1250000000 0.7500000000 0.1250000000
result:
ok 3 numbers
Test #2:
score: 0
Accepted
time: 4ms
memory: 3872kb
input:
6 6 1 1 4 5 1 4 1 1 4 5 1 4
output:
0.2418672840 0.2418672840 0.5162654321
result:
ok 3 numbers
Test #3:
score: 0
Accepted
time: 2ms
memory: 3844kb
input:
7 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #4:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
1 7 7 1 1 1 1 1 1 1
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #5:
score: 0
Accepted
time: 0ms
memory: 4072kb
input:
2 3 736618938 652769331 328875880 97571721 44608905
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #6:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
5 4 53585130 731696211 668322278 611205195 158818781 569587984 776042583 745745433 330119007
output:
0.0668402778 0.6643518519 0.2688078704
result:
ok 3 numbers
Test #7:
score: 0
Accepted
time: 0ms
memory: 4012kb
input:
7 2 578505806 551611151 92903265 403642038 542119417 57334031 307573613 897644535 168524310
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #8:
score: 0
Accepted
time: 3ms
memory: 3932kb
input:
5 6 113196606 64768263 772808463 787707989 500151952 481840741 676847825 4641268 431386165 847736311 169677832
output:
0.1363231739 0.5223971836 0.3412796425
result:
ok 3 numbers
Test #9:
score: 0
Accepted
time: 10ms
memory: 3848kb
input:
6 6 260666773 527612597 471926610 702232282 559007797 606173983 560573055 928117268 101411867 875949818 907478252 182117037
output:
0.0000000000 0.9608195730 0.0391804270
result:
ok 3 numbers
Test #10:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
3 3 333377599 3066695 67916629 426841530 865184552 974638244
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #11:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
1 1 529429019 529428649
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #12:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
3 3 12886596 817437415 465037461 12886473 817437448 465037967
output:
0.0694444444 0.6527777778 0.2777777778
result:
ok 3 numbers
Test #13:
score: 0
Accepted
time: 17ms
memory: 3908kb
input:
6 6 211213374 319527017 257080158 176742665 53109345 33822515 53109265 319527076 176743175 257080012 211212799 33822353
output:
0.4233999593 0.3193865848 0.2572134559
result:
ok 3 numbers
Test #14:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
1 2 1 1 1
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #15:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
1 2 1 1 3
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #16:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
1 2 2 4 2
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #17:
score: 0
Accepted
time: 0ms
memory: 3844kb
input:
1 2 3 5 5
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #18:
score: 0
Accepted
time: 0ms
memory: 3876kb
input:
1 2 4 1 2
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #19:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
1 2 5 2 5
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #20:
score: 0
Accepted
time: 0ms
memory: 3928kb
input:
1 2 5 5 5
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #21:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
2 2 1 1 1 3
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #22:
score: 0
Accepted
time: 0ms
memory: 3988kb
input:
2 2 1 1 2 3
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #23:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
2 2 1 4 2 5
output:
0.0000000000 0.5000000000 0.5000000000
result:
ok 3 numbers
Test #24:
score: 0
Accepted
time: 0ms
memory: 3924kb
input:
2 2 2 2 1 4
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #25:
score: 0
Accepted
time: 0ms
memory: 3872kb
input:
2 2 3 2 4 1
output:
0.0000000000 0.5000000000 0.5000000000
result:
ok 3 numbers
Test #26:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
2 2 3 3 1 3
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #27:
score: 0
Accepted
time: 0ms
memory: 3984kb
input:
2 2 3 3 2 4
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #28:
score: 0
Accepted
time: 0ms
memory: 4004kb
input:
2 2 3 3 5 3
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #29:
score: 0
Accepted
time: 0ms
memory: 4068kb
input:
2 2 4 3 2 1
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #30:
score: 0
Accepted
time: 0ms
memory: 3932kb
input:
2 2 4 3 4 4
output:
0.0000000000 1.0000000000 0.0000000000
result:
ok 3 numbers
Test #31:
score: 0
Accepted
time: 0ms
memory: 3924kb
input:
2 2 5 1 5 2
output:
0.1250000000 0.6250000000 0.2500000000
result:
ok 3 numbers
Test #32:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
2 2 5 1 5 3
output:
0.1250000000 0.6250000000 0.2500000000
result:
ok 3 numbers
Test #33:
score: 0
Accepted
time: 0ms
memory: 3912kb
input:
2 2 5 2 2 3
output:
0.8750000000 0.0000000000 0.1250000000
result:
ok 3 numbers
Test #34:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
2 2 5 4 1 2
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #35:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
2 2 5 4 3 5
output:
0.8750000000 0.0000000000 0.1250000000
result:
ok 3 numbers
Test #36:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
2 2 5 5 1 4
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #37:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
2 2 5 5 2 2
output:
1.0000000000 0.0000000000 0.0000000000
result:
ok 3 numbers
Test #38:
score: 0
Accepted
time: 0ms
memory: 3876kb
input:
1 1 6 6
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #39:
score: 0
Accepted
time: 1ms
memory: 3852kb
input:
5 5 6 5 9 9 3 3 5 9 9 6
output:
0.2978703704 0.2787731481 0.4233564815
result:
ok 3 numbers
Test #40:
score: 0
Accepted
time: 9ms
memory: 3852kb
input:
6 6 10 2 3 4 5 7 5 2 4 3 10 7
output:
0.2540104569 0.1927737054 0.5532158377
result:
ok 3 numbers
Test #41:
score: 0
Accepted
time: 79ms
memory: 3876kb
input:
7 7 7 6 8 6 7 3 9 7 6 9 8 7 3 6
output:
0.3109137514 0.3657683679 0.3233178807
result:
ok 3 numbers
Test #42:
score: 0
Accepted
time: 2ms
memory: 3880kb
input:
6 6 5 4 7 9 9 10 9 4 9 7 5 10
output:
0.2169424351 0.3278565458 0.4552010192
result:
ok 3 numbers
Test #43:
score: 0
Accepted
time: 0ms
memory: 4016kb
input:
4 4 9 7 10 6 9 7 6 10
output:
0.3308738426 0.2622974537 0.4068287037
result:
ok 3 numbers
Test #44:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
3 3 3 10 3 3 10 3
output:
0.1875000000 0.1875000000 0.6250000000
result:
ok 3 numbers
Test #45:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
2 2 3 4 3 4
output:
0.0000000000 0.0000000000 1.0000000000
result:
ok 3 numbers
Test #46:
score: 0
Accepted
time: 176ms
memory: 3812kb
input:
7 7 922750124 99645786 685060385 948410807 266950246 996521461 883971852 266950246 99645786 883971852 685060385 922750124 996521461 948410807
output:
0.3633563714 0.2795664055 0.3570772231
result:
ok 3 numbers
Test #47:
score: 0
Accepted
time: 227ms
memory: 4012kb
input:
7 7 241155912 361580213 393947982 781406405 485516551 277202028 115028196 485516551 361580213 115028196 393947982 241155912 277202028 781406405
output:
0.3701760936 0.2787899453 0.3510339611
result:
ok 3 numbers
Test #48:
score: 0
Accepted
time: 122ms
memory: 3860kb
input:
7 7 565748008 734938287 873800405 879803305 473331973 893190834 623040014 473331973 734938287 623040014 873800405 565748008 893190834 879803305
output:
0.3643059080 0.3156035542 0.3200905378
result:
ok 3 numbers
Test #49:
score: 0
Accepted
time: 426ms
memory: 3884kb
input:
7 7 14 4 6 5 201506030 15 15 4 14 201506030 15 15 6 5
output:
0.1781837917 0.3370815099 0.4847346985
result:
ok 3 numbers
Test #50:
score: 0
Accepted
time: 219ms
memory: 3860kb
input:
7 7 3 2 3 5 784861968 2 1 2 3 784861968 1 2 3 5
output:
0.2230750219 0.3161515802 0.4607733979
result:
ok 3 numbers
Test #51:
score: 0
Accepted
time: 553ms
memory: 3956kb
input:
7 7 8 15 3 9 168061718 2 5 15 8 168061718 5 2 3 9
output:
0.2129695960 0.3199629951 0.4670674089
result:
ok 3 numbers
Test #52:
score: 0
Accepted
time: 205ms
memory: 3760kb
input:
7 7 859736717 19 19 18 13 10 7 7 10 13 18 19 19 859736717
output:
0.3936206526 0.1479672663 0.4584120812
result:
ok 3 numbers
Test #53:
score: 0
Accepted
time: 274ms
memory: 3816kb
input:
7 7 761045932 18 13 11 9 7 6 6 7 9 11 13 18 761045932
output:
0.3824676896 0.1474932387 0.4700390718
result:
ok 3 numbers
Test #54:
score: 0
Accepted
time: 317ms
memory: 3820kb
input:
7 7 379524878 17 16 14 10 6 1 1 6 10 14 16 17 379524878
output:
0.3792602933 0.1765367221 0.4442029846
result:
ok 3 numbers
Test #55:
score: 0
Accepted
time: 358ms
memory: 4008kb
input:
7 7 986258805 329018732 16 14 10 10 4 4 10 10 14 16 329018732 986258805
output:
0.3352065235 0.1682281865 0.4965652900
result:
ok 3 numbers
Test #56:
score: 0
Accepted
time: 346ms
memory: 3908kb
input:
7 7 402437510 39859989 20 20 18 17 7 7 17 18 20 20 39859989 402437510
output:
0.3286994736 0.1602630583 0.5110374681
result:
ok 3 numbers
Test #57:
score: 0
Accepted
time: 427ms
memory: 4004kb
input:
7 7 719895666 88341845 15 11 10 6 5 5 6 10 11 15 88341845 719895666
output:
0.3415410588 0.1694365967 0.4890223446
result:
ok 3 numbers
Test #58:
score: 0
Accepted
time: 583ms
memory: 3912kb
input:
7 7 22 657372492 8 20 531193761 10 21 8 22 20 657372492 531193761 21 10
output:
0.2830320359 0.2143316414 0.5026363227
result:
ok 3 numbers
Test #59:
score: 0
Accepted
time: 702ms
memory: 3784kb
input:
7 7 8 559730577 2 23 543514141 3 24 2 8 23 559730577 543514141 24 3
output:
0.2836816166 0.2220157134 0.4943026700
result:
ok 3 numbers
Test #60:
score: 0
Accepted
time: 459ms
memory: 3928kb
input:
7 7 24 416408320 4 25 698151361 24 15 4 24 25 416408320 698151361 15 24
output:
0.2975163684 0.2472865870 0.4551970446
result:
ok 3 numbers