QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#495415 | #9134. Building a Fence | ucup-team191# | WA | 2ms | 3856kb | C++23 | 980b | 2024-07-27 20:42:12 | 2024-07-27 20:42:13 |
Judging History
answer
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
int s;
bool check(vector < int > v) {
sort(v.begin(), v.end());
do {
bool can = true;
int lst = -1;
for(int i = 1;i < (int)v.size();i++) {
if(v[i] / s == lst) can = false;
lst = v[i] / s;
}
if(can) return true;
} while(next_permutation(v.begin(), v.end()));
return false;
}
void solve() {
int a, b;
scanf("%d%d%d", &a, &b, &s);
if(a > b) swap(a, b);
if(a + b < s) {
printf("4\n");
return;
}
int bar = 2 * ((a + b + s - 1) / s);
int naj = (2 * (a + b) + s - 1) / s;
int vis = (2 * (a + b)) % s;
if(vis == a || vis == b) {
printf("%d\n", naj);
return;
}
if(b > vis && check({a, a, b, b - vis})) {
printf("%d\n", naj);
return;
}
if(a > vis && check({a - vis, a, b, b})) {
printf("%d\n", naj);
return;
}
printf("%d\n", bar);
}
int main() {
int T; scanf("%d", &T);
for(;T--;) solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3856kb
input:
7 7 9 4 1 1 2 1 1 4 4 6 2 3 3 5 10 6 4 1 11 5
output:
8 2 4 10 4 8 5
result:
ok 7 numbers
Test #2:
score: -100
Wrong Answer
time: 2ms
memory: 3792kb
input:
8000 1 1 1 1 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 2 1 1 2 2 1 2 3 1 2 4 1 2 5 1 2 6 1 2 7 1 2 8 1 2 9 1 2 10 1 2 11 1 2 12 1 2 13 1 2 14 1 2 15 1 2 16 1 2 17 1 2 18 1 2 19 1 2 20 1 3 1 1 3 2 1 3 3 1 3 4 1 3 5 1 3...
output:
4 2 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 6 3 2 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 8 4 3 2 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 10 5 4 3 2 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 12 6 4 3 3 2 4 4 4 4 4 4 4 4 4 4 4 4 4 4 14 7 5 4 3 3 2 4 4 4 4 4 4 4 4 4 4 4 4 4 16 8 6 4 4 3 3 2 4 4 4 4 4 4 4 4 4 4 4 4 18 9 6 5 4 3 3 3...
result:
wrong answer 24th numbers differ - expected: '3', found: '4'