QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#109865#6525. New Houseszzzyzzz#TL 0ms3420kbC++171.0kb2023-05-30 20:13:102023-05-30 20:13:11

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-30 20:13:11]
  • 评测
  • 测评结果:TL
  • 用时:0ms
  • 内存:3420kb
  • [2023-05-30 20:13:10]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N=1e6+10;
int T;
ll n,m;

inline ll read() {
	ll c=0,f=1;
	char ch=getchar();
	while(ch<'0'||ch>'9') {
		if(ch=='-') f=-f;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9') {
		c=c*10+ch-'0';
		ch=getchar();
	}
	return c*f;
}

struct Node {
	ll a,b;
	bool operator<(const Node&W)const {
		return b-a>W.b-W.a;
	}
} node[N];

void init() {
	n=read(),m=read();

	ll res = 0;
	ll mmax;
	for(int i=1; i<=n; i++) {
		node[i].a=read(),node[i].b=read();
		res+=node[i].a;
	}
	mmax = res;
	sort(node+1,node+1+n);



	ll len = m-n;
	for(int i=1; i<=n-1; i++) {
		if(len<1)break;

		ll tem = node[i].b;

		len+=1;
		len -= 2;
		res -= node[i].a;
		res += node[i].b;
		if(i==n-1) {
			res -= node[n].a;
			res += node[n].b;

		}
		mmax = max(res,mmax);

	}




	cout<<mmax<<endl;

}

int main() {
	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	T=read();
	while(T--) {
		init();
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3420kb

input:

3
4 5
1 100
100 1
100 1
100 1
2 2
1 10
1 10
2 3
100 50
1 1000

output:

400
2
1050

result:

ok 3 number(s): "400 2 1050"

Test #2:

score: -100
Time Limit Exceeded

input:

100000
6 11
191141536 365120521
799679686 648574232
102602909 467685128
405440859 796808887
384858152 191995380
433392826 195648471
5 13
831367906 510447872
795639287 575551283
811207605 176441088
240156289 946977042
133416463 721098873
5 5
806744021 699586200
630510306 637827160
49223781 641709297
...

output:

3247545200
4106290713
2653993029
5122532137
5570513606
2031887824
2044500908
1857678917
6815058419
2237593918
6646615756
5638337819
3690874076
5497726904
5513905900
5404435094
4705403467
2411992217
3430587752
5098767681
3921151709
1445672728
2692878616
3833748807
2716183054
850381192
6464787173
8839...

result: