比赛 |
2024.5.23练习赛 |
评测结果 |
WWWWWEEEEE |
题目名称 |
Rotate Columns |
最终得分 |
0 |
用户昵称 |
小金 |
运行时间 |
0.915 s |
代码语言 |
C++ |
内存使用 |
2.88 MiB |
提交时间 |
2024-05-23 21:09:37 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
struct shu{
int x,y;
long long z;
}a[1500];
int t,n,m,cnt=0,b[1500],ma[110],mi[110],s;
bool cmp(shu a,shu b)
{
return a.z>b.z;
}
int main()
{
freopen("happygameT1.in","r",stdin);
freopen("happygameT1.out","w",stdout);
scanf("%d",&t);
while(t--)
{
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
cnt++;
scanf("%lld",&a[cnt].z);
a[cnt].x=i;
a[cnt].y=j;
}
}
sort(a+1,a+cnt+1,cmp);
long long ans=0;
for(int i=1;i<=n;i++)
{
ans+=a[i].z;
}
printf("%lld\n",ans);
}
return 0;
}