QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#414217 | #6749. Target | heavenMOJANG | TL | 293ms | 3876kb | C++23 | 766b | 2024-05-18 17:29:35 | 2024-05-18 17:29:36 |
Judging History
answer
#pragma GCC optimize(1)
#pragma GCC optimize(2)
#pragma GCC optimize(3,"Ofast","inline")
#include<bits/stdc++.h>
#define int long long
#define double long double
using namespace std;
constexpr int inf=0x7fffffff;
constexpr double eps=1e-4;
signed main(){
std::cin.tie(0)->sync_with_stdio(0);
double a,b;cin>>a>>b;
string s="";
double aa=a;
while(a-0.0>=1e-7) a/=2.0,s+="1";
int n=s.size();
for(int i=0;i<(1ll<<n);++i){
string t=s;
for(int j=0;j<n;++j){
if((1ll<<j)&i) t[j]='2';
}
double tmp=aa;
for(int j=0;j<n;++j)
if(t[j]=='1') tmp/=2.0;
else tmp=tmp/2.0+0.5;
if(abs(tmp-b)<=eps){cout<<t<<"\n";break;}
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 293ms
memory: 3876kb
input:
0.5 0.25
output:
21122212112222222222211
result:
ok ok
Test #2:
score: -100
Time Limit Exceeded
input:
1 0.75