Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
108490 蒋沛霖 数列极差问题 C++ 编译错误 0 0 MS 0 KB 711 2023-11-03 13:40:08

Tests(0/0):


#include<iostream> #include<algorithm> #definemchuantongmeide usingnamespacestd; intm,n,p,q,d; intx1,y1,x2,y2; structnode { intnum,pos; }; nodex[1005],y[1005]; boolcmp(nodea,nodeb) { returna.num>b.num; } boolcmp_(nodea,nodeb) { returna.pos<b.pos; } intmain() { cin>>m>>n>>p>>q>>d; for(inti=1;i<=d;i++) { cin>>x1>>y1>>x2>>y2; if(x1!=x2) { x[min(x1,x2)].num++; x[min(x1,x2)].pos=min(x1,x2); } else { y[min(y1,y2)].num++; y[min(y1,y2)].pos=min(y1,y2); } } sort(x+1,x+n+1,cmp); sort(y+1,y+m+1,cmp); sort(x+1,x+p+1,cmp_); sort(y+1,y+q+1,cmp_); for(inti=1;i<=p;i++) { cout<<x[i].pos<<""; } cout<<endl; for(inti=1;i<=q;i++) { cout<<y[i].pos<<""; } return0; }


测评信息: