QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#635776 | #9427. Collect the Coins | yanchengzhi | TL | 0ms | 7716kb | C++20 | 1.8kb | 2024-10-12 20:55:38 | 2024-10-12 20:55:39 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e6 + 5;
const int inf = 1e9;
int n, t[maxn], c[maxn];
bool f[maxn];
bool check(int v) {
function<bool(int, int)> ck = [&](int i, int j) {
if(i == 0) {
return true;
}
return (1ll * v * (t[j] - t[i])) >= 1ll * abs(c[i] - c[j]);
};
f[0] = 1;
for(int i = 1; i < n; i++) {
bool flag = 0;
for(int j = 0; j < i; j++) {
if(f[j] && (j == 0 || ck(j, i + 1))) {
flag = 1;
}
}
f[i] = flag;
if(!ck(i, i + 1)) {
for(int j = 0; j < i; j++) {
f[j] = 0;
}
}
}
for(int i = 0; i < n; i++) {
if(f[i]) {
return 1;
}
}
return 0;
// vector<int> f;
// f.push_back(0);
// for(int i = 1; i < n; i++) {
// if(ck(i, i + 1)) {
// continue;
// }
// bool ok = 0;
// for(int j : f) {
// if(ck(j, i + 1)) {
// ok = 1;
// break;
// }
// }
// if(!ok) {
// return 0;
// }
// f.clear();
// f.push_back(i);
// }
// return 1;
}
void work(){
cin >> n;
for(int i = 1; i <= n; i++) {
cin >> t[i] >> c[i];
}
int l = 0, r = inf, ans = -1;
while(l <= r) {
int mid = (l + r) / 2;
if(check(mid)) {
ans = mid;
r = mid - 1;
}
else {
l = mid + 1;
}
}
cout << ans << '\n';
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int T;
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: 7716kb
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
Time Limit Exceeded
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...