QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#660398#9427. Collect the CoinsLateRegistration#WA 7ms12196kbC++201.2kb2024-10-20 10:58:202024-10-20 10:58:20

Judging History

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

  • [2024-11-06 15:56:27]
  • hack成功,自动添加数据
  • (/hack/1139)
  • [2024-10-20 10:58:20]
  • 评测
  • 测评结果:WA
  • 用时:7ms
  • 内存:12196kb
  • [2024-10-20 10:58:20]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
inline int read()
{
	int n=0,f=1,ch=getchar();
	while(ch<'0'||ch>'9')
	{
		if(ch=='-')f=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9')
	{
		n=n*10+ch-'0';
		ch=getchar();
	}
	return n*f;
}
int t[1000005],c[1000005];
int x1[1000005],x2[1000005],pos[1000005];
bool bi(int x,int y)
{
	if(x1[x]!=x1[y])return x1[x]<x1[y];
	return x2[x]<x2[y];
}
signed main()
{
	int T,n;
	T=read();
	for(int greg=1;greg<=T;greg++)
	{
		n=read();
		for(int i=1;i<=n;i++)
		{
			t[i]=read();
			c[i]=read();
		}
		int l=0,r=1000000000,mid;
		while(l<=r)
		{
			mid=((l+r)>>1);
			for(int i=1;i<=n;i++)
			{
				x1[i]=t[i]*mid+c[i];
				x2[i]=t[i]*mid-c[i];
				pos[i]=i;
			}
			//sort(pos+1,pos+n+1,bi);
			int n1=1,n2=0;
			x2[0]=-1000000000000000000LL;
			bool flag=true;
			for(int i=2;i<=n;i++)
			{
				//if(mid==2)printf("%lld %lld\n",i,nl);
				if(x1[n1]<=x1[i]&&x2[n1]<=x2[i])
				{
					n1=i;
				}
				else if(n2==0||(x1[n2]<=x1[i]&&x2[n2]<=x2[i]))
				{
					n2=i;
				}
				else
				{
					flag=false;
					break;
				}
			}
			if(flag)r=mid-1;
			else l=mid+1;
		}
		if(l<=1000000000)printf("%lld\n",l);
		else printf("-1\n");
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3
5
1 1
3 7
3 4
4 3
5 10
1
10 100
3
10 100
10 1000
10 10000

output:

2
0
-1

result:

ok 3 lines

Test #2:

score: -100
Wrong Answer
time: 7ms
memory: 12196kb

input:

1135
2
6 5
8 8
8
2 9
2 10
4 4
5 3
6 2
6 8
8 2
8 7
1
9 1
6
4 6
6 1
6 2
9 10
10 1
10 7
5
1 6
2 5
6 7
8 6
10 3
8
1 10
5 4
5 7
6 1
6 6
8 4
9 1
9 4
8
1 1
1 3
2 9
3 3
5 9
6 10
9 7
10 7
3
5 8
6 6
10 6
7
2 9
4 7
5 10
6 3
6 7
8 9
10 1
6
1 4
2 8
5 9
7 10
9 1
10 5
9
2 7
4 5
5 9
6 10
7 4
9 4
9 9
10 3
10 7
1
3 1...

output:

0
3
0
3
1
3
6
0
3
2
2
0
2
5
0
1
5
1
2
0
0
0
1
4
2
0
2
1
3
0
3
2
3
2
5
3
1
1
0
1
1
1
0
2
0
1
0
1
0
2
1
0
2
3
4
4
1
1
1
0
1
3
0
1
4
4
3
0
0
2
2
6
4
3
1
0
0
2
0
3
1
2
0
1
1
3
0
0
1
2
0
3
0
2
2
2
1
0
0
0
5
2
2
0
6
1
1
1
2
2
2
0
3
1
4
3
6
0
8
1
1
3
0
2
2
4
1
1
0
0
0
7
2
2
1
0
0
3
1
2
1
1
2
5
3
0
3
3
3
5
...

result:

wrong answer 74th lines differ - expected: '2', found: '3'