QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#714830 | #6749. Target | MiniLong# | AC ✓ | 0ms | 3896kb | C++20 | 2.7kb | 2024-11-06 08:31:49 | 2024-11-06 08:31:50 |
Judging History
answer
#include <bits/stdc++.h>
#define _rep(i, x, y) for(int i = x; i <= y; ++i)
#define _req(i, x, y) for(int i = x; i >= y; --i)
#define _rev(i, u) for(int i = head[u]; i; i = e[i].nxt)
#define pb push_back
#define fi first
#define se second
#define mst(f, i) memset(f, i, sizeof f)
using namespace std;
#ifdef ONLINE_JUDGE
#define debug(...) 0
#else
#define debug(...) fprintf(stderr, __VA_ARGS__), fflush(stderr)
#endif
typedef long long ll;
typedef pair<int, int> PII;
namespace fastio{
#ifdef ONLINE_JUDGE
char ibuf[1 << 20],*p1 = ibuf, *p2 = ibuf;
#define get() p1 == p2 && (p2 = (p1 = ibuf) + fread(ibuf, 1, 1 << 20, stdin), p1 == p2) ? EOF : *p1++
#else
#define get() getchar()
#endif
template<typename T> inline void read(T &t){
T x = 0, f = 1;
char c = getchar();
while(!isdigit(c)){
if(c == '-') f = -f;
c = getchar();
}
while(isdigit(c)) x = x * 10 + c - '0', c = getchar();
t = x * f;
}
template<typename T, typename ... Args> inline void read(T &t, Args&... args){
read(t);
read(args...);
}
template<typename T> void write(T t){
if(t < 0) putchar('-'), t = -t;
if(t >= 10) write(t / 10);
putchar(t % 10 + '0');
}
template<typename T, typename ... Args> void write(T t, Args... args){
write(t), putchar(' '), write(args...);
}
template<typename T> void writeln(T t){
write(t);
puts("");
}
template<typename T> void writes(T t){
write(t), putchar(' ');
}
#undef get
};
using namespace fastio;
#define multitest() int T; read(T); _rep(tCase, 1, T)
namespace Calculation{
const ll mod = 998244353;
ll ksm(ll p, ll h){ll base = p % mod, res = 1; while(h){if(h & 1ll) res = res * base % mod; base = base * base % mod, h >>= 1ll;} return res;}
void dec(ll &x, ll y){x = ((x - y) % mod + mod) % mod;}
void add(ll &x, ll y){x = (x + y) % mod;}
void mul(ll &x, ll y){x = x * y % mod;}
ll sub(ll x, ll y){return ((x - y) % mod + mod) % mod;}
ll pls(ll x, ll y){return ((x + y) % mod + mod) % mod;}
ll mult(ll x, ll y){return x * y % mod;}
}
using namespace Calculation;
const double eps = 1e-5;
double a, b;
int cnt[233];
int main(){
scanf("%lf%lf", &a, &b);
while(fabs(a - 0) > eps) putchar('1'), a = a / 2.00;
double cur = 0.5, tot = 0; int pos = 1;
while(fabs(tot - b) > eps){
if(b - (tot + cur) >= -eps) cnt[pos] = 1, tot += cur;
cur /= 2.00, pos++;
}
while(pos && !cnt[pos]) pos--;
_req(i, pos, 1){
if(cnt[i]) putchar('2'), a = (a + 1) / 2.00;
else putchar('1'), a = a / 2.00;
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3824kb
input:
0.5 0.25
output:
111111111111111121
result:
ok ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
1 0.75
output:
1111111111111111122
result:
ok ok
Test #3:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
1 0
output:
11111111111111111
result:
ok ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
0.361954 0.578805
output:
111111111111111122121111212112
result:
ok ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 3896kb
input:
0.144888 0.140086
output:
111111111111112122212222111211
result:
ok ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
0.514397 0.969399
output:
1111111111111111212121111122222
result:
ok ok
Test #7:
score: 0
Accepted
time: 0ms
memory: 3772kb
input:
0.887873 0.402213
output:
111111111111111112222212211221
result:
ok ok
Test #8:
score: 0
Accepted
time: 0ms
memory: 3756kb
input:
0.152004 0.176414
output:
11111111111111212121121221211
result:
ok ok
Test #9:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
0.401831 0.860762
output:
11111111111111112212212111222122
result:
ok ok
Test #10:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
0.580629 0.869474
output:
1111111111111111221211212222122
result:
ok ok
Test #11:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
0.138673 0.508844
output:
1111111111111121112112111112
result:
ok ok
Test #12:
score: 0
Accepted
time: 0ms
memory: 3812kb
input:
0.027182 0.263243
output:
11111111111121122122111121
result:
ok ok
Test #13:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
0.081714 0.212216
output:
111111111111121212112212211
result:
ok ok
Test #14:
score: 0
Accepted
time: 0ms
memory: 3864kb
input:
0.562775 0.388603
output:
111111111111111122222122111221
result:
ok ok
Test #15:
score: 0
Accepted
time: 0ms
memory: 3776kb
input:
0.112949 0.147503
output:
111111111111112211112221211211
result:
ok ok
Test #16:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
0.800247 0.150903
output:
11111111111111111211121212211211
result:
ok ok
Test #17:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
0.300103 0.584619
output:
111111111111111212121221212112
result:
ok ok
Test #18:
score: 0
Accepted
time: 0ms
memory: 3808kb
input:
0.844720 0.070148
output:
111111111111111112121222221112111
result:
ok ok
Test #19:
score: 0
Accepted
time: 0ms
memory: 3832kb
input:
0.573320 0.123035
output:
11111111111111112222222122222111
result:
ok ok
Test #20:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
0.467281 0.231366
output:
11111111111111112212221122122211
result:
ok ok
Test #21:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
0.264769 0.373434
output:
111111111111111212211222222121
result:
ok ok
Test #22:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
0.689729 0.570712
output:
11111111111111111212211112112112
result:
ok ok
Test #23:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
0.747218 0.312573
output:
111111111111111112121111111112121
result:
ok ok
Test #24:
score: 0
Accepted
time: 0ms
memory: 3876kb
input:
0.215052 0.203677
output:
11111111111111121121111212211
result:
ok ok
Test #25:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
0.607834 0.733102
output:
111111111111111122121222122212
result:
ok ok
Test #26:
score: 0
Accepted
time: 0ms
memory: 3864kb
input:
0.516860 0.252876
output:
111111111111111122221211111121
result:
ok ok
Test #27:
score: 0
Accepted
time: 0ms
memory: 3864kb
input:
0.955285 0.457773
output:
11111111111111111221121212221
result:
ok ok
Test #28:
score: 0
Accepted
time: 0ms
memory: 3772kb
input:
0.156178 0.353262
output:
11111111111111222112122121
result:
ok ok
Test #29:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
0.398701 0.040258
output:
1111111111111111222112112121111
result:
ok ok
Test #30:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
0.973859 0.000184
output:
1111111111111111122111111111111
result:
ok ok
Test #31:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
0.882213 0.556709
output:
1111111111111111121111212221112
result:
ok ok
Test #32:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
0.263822 0.460984
output:
1111111111111112211111112212221
result:
ok ok
Test #33:
score: 0
Accepted
time: 0ms
memory: 3772kb
input:
0.443432 0.034841
output:
11111111111111112212122211121111
result:
ok ok