QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#636118#9427. Collect the Coinswoodie_0064#WA 14ms3824kbC++201.1kb2024-10-12 22:21:232024-10-12 22:21:24

Judging History

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

  • [2024-11-06 15:56:27]
  • hack成功,自动添加数据
  • (/hack/1139)
  • [2024-10-12 22:21:24]
  • 评测
  • 测评结果:WA
  • 用时:14ms
  • 内存:3824kb
  • [2024-10-12 22:21:23]
  • 提交

answer

#include <iostream>
#include <vector>
#include <algorithm>
#include <utility>
#include <cmath>
using namespace std;
using i64 = long long;
using par = pair<i64, i64>;
const int N = 1e5 + 3;
int T;
int n, num;


void work(){
	cin >> n;
	vector<par> M(n);
	for(auto &[x, y] : M)  // t, c
		cin >> x >> y;
	auto check = [&](int v)->bool{
		vector<par> A = {{-1, 0}, {-1, 0}};
		int p = 0;
		for(auto [x, y] : M){
//			cout << A[0].first << " " << A[0].second << " ,";
//			cout << A[1].first << " " << A[1].second << "\n"; 
			if((x - A[p].first) * v >= abs(y - A[p].second) or A[p].first == -1){
				A[p] = {x, y};
				continue;
			}
			p ^= 1;
			if((x - A[p].first) * v >= abs(y - A[p].second) or A[p].first == -1)
				A[p] = {x, y};
			else return false;	
		}
		return true;
	};

	
	i64 l = 0, r = 1e9, mid, ans = -1;
	while(l <= r){
		mid = (l + r)/2;
		if(check(mid)) ans = mid, r = mid - 1;
		else l = mid + 1;
	}
	cout << ans << "\n";
}


int main(){
//	freopen("test.txt", "r", stdin);
	ios::sync_with_stdio(false);
	cin.tie(0);
	cin >> T;
	while(T--){
		work();
	}	
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 14ms
memory: 3824kb

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

result:

wrong answer 17th lines differ - expected: '5', found: '6'