QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#384547#6532. TradingDDTWA 74ms3852kbC++14903b2024-04-10 01:19:032024-04-10 01:19:04

Judging History

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

  • [2024-04-10 01:19:04]
  • 评测
  • 测评结果:WA
  • 用时:74ms
  • 内存:3852kb
  • [2024-04-10 01:19:03]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int INF=0x3f3f3f3f;
#define endl '\n'
#define x first
#define y second
typedef long long ll;
typedef pair<int,int> PII;
PII a[100010];
int n,cnt=0;
void solve()
{
	
	
	scanf("%d",&n);
	for(int i=1;i<=n;i++) 
	{
		scanf("%d%d",&a[i].x,&a[i].y);	
		cnt+=a[i].y;
	}
	sort(a+1,a+n+1);
	int cnt1,cnt2;
	if(cnt&1)cnt1=(cnt-1)/2;
	else cnt1=cnt/=2;
	cnt2=cnt1;
	int cb=0,xs=0;


		
	for(int i=1,j=n;i<=n,j>=1;i++,j--)
	{
		cb+=a[i].x*min(a[i].y,cnt1);
		cnt1-=min(a[i].y,cnt1);
		
		xs+=a[j].x*min(a[j].y,cnt2);
		cnt2-=min(a[j].y,cnt2);
		if(cnt1<=0)break;
	}
	printf("%d\n",xs-cb);
	//cout<<xs-cb<<endl;
}
/*
10 2
20 4
25 
30 7
50 1
*/
int main()
{
	//ios::sync_with_stdio(false);
	//ios::sync_with_stdio(0);cin.tie(0),cout.tie(0);
	int t;
	scanf("%d",&t);
	while(t--)
	{
		solve();
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

2
4
10 2
30 7
20 4
50 1
2
1 100
1 1000

output:

100
0

result:

ok 2 number(s): "100 0"

Test #2:

score: -100
Wrong Answer
time: 74ms
memory: 3852kb

input:

100000
8
567091 283679
875020 918237
314684 148083
456411 304598
766056 882388
135371 326501
578773 250140
221306 874117
5
126777 129517
846433 679825
649281 330021
427768 362636
390068 692169
5
657677 231119
941936 991342
901241 15133
660372 970476
698958 209343
10
478657 163635
752788 819629
82110...

output:

-744919867
0
0
285019488
0
0
0
0
0
0
0
0
0
0
0
526403392
0
1422080292
0
0
0
0
0
0
0
1070652210
-1025160003
0
0
0
0
0
0
0
0
-2058779753
1816478952
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
180286859
293335024
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
-786717282...

result:

wrong answer 1st numbers differ - expected: '974212656325', found: '-744919867'