QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#661001 | #9427. Collect the Coins | NobodyThere | WA | 5ms | 3884kb | C++17 | 1.4kb | 2024-10-20 14:15:20 | 2024-10-20 14:15:23 |
Judging History
answer
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
typedef long long ll;
constexpr int N = 1e6;
template <typename T> inline void read(T &x) {
char ch; x = 0;
while((ch = getchar()) <= 32);
do {x = x * 10 + (ch & 15);} while((ch = getchar()) > 32);
}
template <typename T, typename ... _T>
inline void read(T &x, _T &...y) {read(x), read(y...);}
template <typename T> inline T abs(const T &x) {
return x < 0 ? -x : x;
}
int n;
struct note {
ll t, x;
} a[N + 3];
bool chk(ll v) {
note lst;
int vis = 0;
for(int i = 2; i <= n; i++) {
if(v * (a[i].t - a[i - 1].t) < abs(a[i].x - a[i - 1].x)) {
if(!vis) {
vis = 1;
} else if(v * (a[i].t - lst.t) < abs(a[i].x - lst.x)) {
return 0;
}
lst = a[i - 1];
}
}
return 1;
}
int T;
int main() {
// freopen("B.in", "r", stdin);
// freopen("B.out", "w", stdout);
read(T);
while(T--){
read(n);
for(int i = 1; i <= n; i++) {
read(a[i].t, a[i].x);
}
std::sort(a + 1, a + n + 1, [](note x, note y) {
return x.t < y.t;
});
ll L = 0, R = 1'000'000'000;
while(L <= R) {
const ll mid = (L + R) >> 1;
if(chk(mid)) R = mid - 1;
else L = mid + 1;
}
printf("%lld\n", L<=1'000'000'000?L:-1);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3780kb
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: 5ms
memory: 3884kb
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'