QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#360443 | #6749. Target | LingKer# | AC ✓ | 5ms | 5272kb | C++14 | 1.9kb | 2024-03-21 19:39:31 | 2024-03-21 19:39:31 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define all(c) (c).begin(), (c).end()
#define rall(x) (x).rbegin(), (x).rend()
#define sz(x) (int)(x).size()
#define Sum(a) accumulate((a).begin(), (a).end() , 0ll)
#define Min(a) *std::min_element((a).begin(), (a).end())
#define Max(a) *std::max_element((a).begin(), (a).end())
#define rev(a) reverse((a).begin(), (a).end())
#define each(x, a) for(auto& x : a)
#define mst(a, x) memset(a, x, sizeof(a))
#define LL long long
#define rep(i, from, to) for(LL i = from;i<to;i++)
#define rrep(i, from, to) for(LL i = from;i>to;i--)
#define to_uni(a) a.erase(unique(begin(a), end(a)), end(a))
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define pp pop_back
#define endl "\n"
typedef pair<int, int> PII;
typedef pair<LL, LL> PLL;
const int P = 998244353;
const int INF = 0x3f3f3f3f;
const int dx[4]={1, 0, -1, 0}, dy[4]={0, 1, 0, -1};
const int fx[8] = {-1, -1, 0, 1, 1, 1, 0, -1}, fy[8] = {0, 1, 1, 1, 0, -1, -1, -1};
double eps = 1e-4;
void solve()
{
double a,b;
cin >> a >> b;
string s;
queue<pair<double , string>> q;
q.emplace(a,s);
map<double ,int> S;
while(q.size())
{
auto [x,o] = q.front();
if(o.size() > 50) continue;
if(abs(x - b) <= eps)
{
// cout << fixed << setprecision(10) << x << " " << b << endl;
cout << o << endl;
return;
}
q.pop();
double sa = x * 0.5 , sb = (x+1) * 0.5;
if(!S.count(sa))
{
S[sa] ++;
q.emplace(sa,o+'1');
}
if(!S.count(sb))
{
S[sb] ++ ;
q.emplace(sb,o+'2');
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int t = 1;
//cin >> t;
while(t--)
solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3732kb
input:
0.5 0.25
output:
1
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3804kb
input:
1 0.75
output:
12
result:
ok ok
Test #3:
score: 0
Accepted
time: 4ms
memory: 5196kb
input:
1 0
output:
11111111111111
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3900kb
input:
0.361954 0.578805
output:
111212112
result:
ok ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 4756kb
input:
0.144888 0.140086
output:
122222111211
result:
ok ok
Test #6:
score: 0
Accepted
time: 2ms
memory: 4472kb
input:
0.514397 0.969399
output:
21111122222
result:
ok ok
Test #7:
score: 0
Accepted
time: 1ms
memory: 4056kb
input:
0.887873 0.402213
output:
212211221
result:
ok ok
Test #8:
score: 0
Accepted
time: 1ms
memory: 3844kb
input:
0.152004 0.176414
output:
21221211
result:
ok ok
Test #9:
score: 0
Accepted
time: 1ms
memory: 4032kb
input:
0.401831 0.860762
output:
2111222122
result:
ok ok
Test #10:
score: 0
Accepted
time: 1ms
memory: 4016kb
input:
0.580629 0.869474
output:
12222122
result:
ok ok
Test #11:
score: 0
Accepted
time: 1ms
memory: 3760kb
input:
0.138673 0.508844
output:
2111112
result:
ok ok
Test #12:
score: 0
Accepted
time: 3ms
memory: 4392kb
input:
0.027182 0.263243
output:
22122111121
result:
ok ok
Test #13:
score: 0
Accepted
time: 4ms
memory: 5028kb
input:
0.081714 0.212216
output:
212112212211
result:
ok ok
Test #14:
score: 0
Accepted
time: 4ms
memory: 5228kb
input:
0.562775 0.388603
output:
222122111221
result:
ok ok
Test #15:
score: 0
Accepted
time: 0ms
memory: 4044kb
input:
0.112949 0.147503
output:
2221211211
result:
ok ok
Test #16:
score: 0
Accepted
time: 4ms
memory: 4848kb
input:
0.800247 0.150903
output:
211212211211
result:
ok ok
Test #17:
score: 0
Accepted
time: 1ms
memory: 4056kb
input:
0.300103 0.584619
output:
221212112
result:
ok ok
Test #18:
score: 0
Accepted
time: 1ms
memory: 4040kb
input:
0.844720 0.070148
output:
2221112111
result:
ok ok
Test #19:
score: 0
Accepted
time: 4ms
memory: 5272kb
input:
0.573320 0.123035
output:
222122222111
result:
ok ok
Test #20:
score: 0
Accepted
time: 1ms
memory: 3836kb
input:
0.467281 0.231366
output:
122122211
result:
ok ok
Test #21:
score: 0
Accepted
time: 4ms
memory: 5024kb
input:
0.264769 0.373434
output:
211222222121
result:
ok ok
Test #22:
score: 0
Accepted
time: 1ms
memory: 4120kb
input:
0.689729 0.570712
output:
11112112112
result:
ok ok
Test #23:
score: 0
Accepted
time: 5ms
memory: 5160kb
input:
0.747218 0.312573
output:
1111111112121
result:
ok ok
Test #24:
score: 0
Accepted
time: 0ms
memory: 4488kb
input:
0.215052 0.203677
output:
21111212211
result:
ok ok
Test #25:
score: 0
Accepted
time: 1ms
memory: 3992kb
input:
0.607834 0.733102
output:
1222122212
result:
ok ok
Test #26:
score: 0
Accepted
time: 1ms
memory: 3796kb
input:
0.516860 0.252876
output:
211111121
result:
ok ok
Test #27:
score: 0
Accepted
time: 0ms
memory: 4616kb
input:
0.955285 0.457773
output:
121121212221
result:
ok ok
Test #28:
score: 0
Accepted
time: 5ms
memory: 4984kb
input:
0.156178 0.353262
output:
222112122121
result:
ok ok
Test #29:
score: 0
Accepted
time: 2ms
memory: 4188kb
input:
0.398701 0.040258
output:
12112121111
result:
ok ok
Test #30:
score: 0
Accepted
time: 0ms
memory: 4392kb
input:
0.973859 0.000184
output:
111111111111
result:
ok ok
Test #31:
score: 0
Accepted
time: 4ms
memory: 5072kb
input:
0.882213 0.556709
output:
222112221112
result:
ok ok
Test #32:
score: 0
Accepted
time: 1ms
memory: 4100kb
input:
0.263822 0.460984
output:
11112212221
result:
ok ok
Test #33:
score: 0
Accepted
time: 2ms
memory: 4356kb
input:
0.443432 0.034841
output:
22211121111
result:
ok ok