QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#414399 | #6749. Target | OneWan | WA | 5ms | 9616kb | C++23 | 978b | 2024-05-18 22:41:51 | 2024-05-18 22:41:51 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
int __OneWan_2024 = [](){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
return 0;
}();
int dist[500005];
array<int, 2> pre[500005];
int main() {
double a, b;
cin >> a >> b;
int ta = a * 20000, tb = b * 20000;
fill(dist, dist + 500005, 200);
dist[ta] = 0;
queue<int> que;
que.push(ta);
pre[ta] = {-1, -1};
while (!que.empty()) {
int x = que.front();
que.pop();
{
int tx = x * 0.5;
if (dist[tx] > dist[x] + 1) {
dist[tx] = dist[x] + 1;
pre[tx] = {x, 1};
que.push(tx);
}
}
{
int tx = (x + 10000);
if (tx < 500005) {
if (dist[tx] > dist[x] + 1) {
dist[tx] = dist[x] + 1;
pre[tx] = {x, 2};
que.push(tx);
}
}
}
}
vector<int> ans;
int now = tb;
while (pre[tb][0] != -1) {
ans.push_back(pre[tb][1]);
tb = pre[tb][0];
}
for (auto &x : ans) {
cout << x;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 9548kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 2ms
memory: 9612kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 2ms
memory: 9616kb
input:
1 0
output:
111111111111111
result:
ok ok
Test #4:
score: -100
Wrong Answer
time: 5ms
memory: 9608kb
input:
0.361954 0.578805
output:
211121121111
result:
wrong answer wa