QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#602530#9427. Collect the Coinsucup-team3282WA 28ms7740kbC++141.7kb2024-10-01 10:19:582024-10-01 10:20:01

Judging History

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

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

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=1e6+10;

int T;
int n;
int t[maxn],c[maxn];

bool f(int i,int j,int v){
	if(j>i)
		return 1;
	return (ll)v*(t[i]-t[j])>=abs(c[i]-c[j]);
}

int b[maxn];
bool check(int v){
	vector<int> il,ir;
	for(int i=1;i<=n;i++)
		b[i]=0;
	for(int i=2;i<=n;i++){
		if(!f(i,i-1,v)){
			if(c[i]>c[i-1]){
				if(b[i-1]==2||b[i]==1)
					return 0;
				b[i-1]=1;b[i]=2;
				il.push_back(i-1);
				ir.push_back(i);
			}
			else{
				if(b[i-1]==1||b[i]==2)
					return 0;
				b[i]=1;b[i-1]=2;
				il.push_back(i);
				ir.push_back(i-1);
			}
		}
	}
	il.resize(unique(il.begin(),il.end())-il.begin());
	ir.resize(unique(ir.begin(),ir.end())-ir.begin());
//	cout<<"v: "<<v<<endl;for(int i:il)cout<<i<<' ';cout<<endl;for(int i:ir)cout<<i<<' ';cout<<endl;
	if(il.empty())
		return 1;
	int pl=0,pr=0;
	for(int i=1;i<=n;i++){
		if(pl+2<il.size()&&il[pl+1]<i)
			pl++;
		if(pr+2<ir.size()&&ir[pr+1]<i)
			pr++;
//		cout<<i<<' '<<il[pl]<<' '<<il[pl+1]<<' '<<ir[pr]<<' '<<ir[pr+1]<<endl;
		bool f1=0,f2=0;
		
		if(il.size()==1)
			f1=1;
		else{
			if(i<il[pl]||i>il[pl+1])
				f1=1;
			else{
				if(f(i,il[pl],v)&&f(il[pl+1],i,v))
					f1=1;
			}
		}
		if(ir.size()==1)
			f2=1;
		else{
			if(i<ir[pr]||i>ir[pr+1])
				f2=1;
			else{
				if(f(i,ir[pr],v)&&f(ir[pr+1],i,v))
					f2=1;
			}
		}
		if(!f1&&!f2)
			return 0;
	}
	return 1;
}

int main(){
	ios::sync_with_stdio(0);
	cin>>T;
	while(T--){
		cin>>n;
		for(int i=1;i<=n;i++)
			cin>>t[i]>>c[i];
		
		int l=0,r=1e9,mid,ans=-1;
		while(l<=r){
			mid=(l+r)>>1;
			if(check(mid)){
				ans=mid;
				r=mid-1;
			}
			else{
				l=mid+1;
			}
		}
		cout<<ans<<endl;
	}
	
	
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 7696kb

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: 28ms
memory: 7740kb

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
1
1
0
2
0
0
0
5
1
2
0
0
0
1
4
2
0
2
1
3
0
3
2
3
2
5
3
1
0
0
1
1
1
0
1
0
1
0
1
0
2
1
0
2
3
2
4
1
1
0
0
0
3
0
1
4
4
3
0
0
2
1
6
4
2
0
0
0
1
0
2
1
2
0
0
1
2
0
0
1
2
0
3
0
2
2
2
1
0
0
0
5
1
2
0
5
1
1
0
2
2
2
0
3
1
1
3
4
0
8
0
0
1
0
2
1
4
1
1
0
0
0
7
2
2
1
0
0
3
1
1
0
1
2
5
3
0
3
3
3
5
...

result:

wrong answer 10th lines differ - expected: '2', found: '1'