QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#409655#6749. Targetasoulcoming#AC ✓1ms4008kbC++201.3kb2024-05-12 14:26:572024-05-12 14:26:57

Judging History

你现在查看的是最新测评结果

  • [2024-05-12 14:26:57]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:4008kb
  • [2024-05-12 14:26:57]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
//upper_bound	>
//lower_bound	>=
#define LL long long
#define ULL unsigned long long
#define PII pair<int,int>
#define YES cout<<"YES\n"
#define NO cout<<"NO\n"
#define PI acos(-1)
#define endl '\n'
#define ee cout<<'\n';
#define __lcm(a, b) a*b/__gcd(a,b)
#define fo(a,b,c) for(int a=b;a<=c;a++)
#define of(a,b,c) for(int a=b;a>=c;a--)
#define debug(x) cout<<#x<<' '<<x<<endl;
#define nep next_permutation
#define prep prev_permutation
#define g(a) a,vector<a>,greater<a>
#define all(a) a.begin(),a.end()
#define alls(a) a.begin()+1,a.end()
#define int long long
//const int p = 998244353, pp = 1000000007;
LL qmi(LL a,LL b,LL mod){LL res=1;while(b){if(b&1)res=res*a%mod;b>>=1;a=a*a%mod;}return res;	}
const int N = 2000010, M = 4000010;
bool flag = 0;
void dfs(double a, double b, string s)
{
	if (flag) return;
	if (s.size() > 50) return;
	if (abs(a - b) <= 1e-4) 
	{
		cout << s;
		flag = 1;
		return;
	}

	dfs(a * 0.5, b, s + '1');
	dfs(a * 0.5 + 0.5, b, s + '2');
}
void solve()
{
	double a, b;
	cin >> a >> b;
	string s;
	dfs(a, b, s);
	
}
signed main()
{
 	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
//	int T; cin >> T; while (T --)
	solve();
}













详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3940kb

input:

0.5 0.25

output:

1

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3772kb

input:

1 0.75

output:

11111111111111111111111111111111111111111111111122

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3900kb

input:

1 0

output:

11111111111111

result:

ok ok

Test #4:

score: 0
Accepted
time: 1ms
memory: 3764kb

input:

0.361954 0.578805

output:

11111111111111111111111111111111111111221111212112

result:

ok ok

Test #5:

score: 0
Accepted
time: 1ms
memory: 3764kb

input:

0.144888 0.140086

output:

11111111111111111111111111111111111111122222111211

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 3840kb

input:

0.514397 0.969399

output:

11111111111111111111111111111111111111221111122222

result:

ok ok

Test #7:

score: 0
Accepted
time: 1ms
memory: 3832kb

input:

0.887873 0.402213

output:

11111111111111111111111111111111111112222212211221

result:

ok ok

Test #8:

score: 0
Accepted
time: 0ms
memory: 3772kb

input:

0.152004 0.176414

output:

11111111111111111111111111111111111111221121221211

result:

ok ok

Test #9:

score: 0
Accepted
time: 0ms
memory: 3700kb

input:

0.401831 0.860762

output:

11111111111111111111111111111111111111122111222122

result:

ok ok

Test #10:

score: 0
Accepted
time: 1ms
memory: 3776kb

input:

0.580629 0.869474

output:

11111111111111111111111111111111111111211212222122

result:

ok ok

Test #11:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

0.138673 0.508844

output:

11111111111111111111111111111111111111112112111112

result:

ok ok

Test #12:

score: 0
Accepted
time: 1ms
memory: 3776kb

input:

0.027182 0.263243

output:

11111111111111111111111111111111111111122122111121

result:

ok ok

Test #13:

score: 0
Accepted
time: 1ms
memory: 3764kb

input:

0.081714 0.212216

output:

11111111111111111111111111111111111111212112212211

result:

ok ok

Test #14:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

0.562775 0.388603

output:

11111111111111111111111111111111111111111222111221

result:

ok ok

Test #15:

score: 0
Accepted
time: 0ms
memory: 3828kb

input:

0.112949 0.147503

output:

11111111111111111111111111111111111111112221211211

result:

ok ok

Test #16:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

0.800247 0.150903

output:

11111111111111111111111111111111111111121212211211

result:

ok ok

Test #17:

score: 0
Accepted
time: 1ms
memory: 3760kb

input:

0.300103 0.584619

output:

11111111111111111111111111111111111111221221212112

result:

ok ok

Test #18:

score: 0
Accepted
time: 1ms
memory: 3972kb

input:

0.844720 0.070148

output:

11111111111111111111111111111111111111222221112111

result:

ok ok

Test #19:

score: 0
Accepted
time: 0ms
memory: 4008kb

input:

0.573320 0.123035

output:

11111111111111111111111111111111111111111222222111

result:

ok ok

Test #20:

score: 0
Accepted
time: 0ms
memory: 3772kb

input:

0.467281 0.231366

output:

11111111111111111111111111111111111111112122122211

result:

ok ok

Test #21:

score: 0
Accepted
time: 1ms
memory: 3804kb

input:

0.264769 0.373434

output:

11111111111111111111111111111111111112211222222121

result:

ok ok

Test #22:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

0.689729 0.570712

output:

11111111111111111111111111111111111111121112112112

result:

ok ok

Test #23:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

0.747218 0.312573

output:

11111111111111111111111111111111111111111111112121

result:

ok ok

Test #24:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

0.215052 0.203677

output:

11111111111111111111111111111111111111121111212211

result:

ok ok

Test #25:

score: 0
Accepted
time: 1ms
memory: 3828kb

input:

0.607834 0.733102

output:

11111111111111111111111111111111111111221222122212

result:

ok ok

Test #26:

score: 0
Accepted
time: 0ms
memory: 3780kb

input:

0.516860 0.252876

output:

11111111111111111111111111111111111111112211111121

result:

ok ok

Test #27:

score: 0
Accepted
time: 1ms
memory: 3812kb

input:

0.955285 0.457773

output:

11111111111111111111111111111111111111221121212221

result:

ok ok

Test #28:

score: 0
Accepted
time: 1ms
memory: 3768kb

input:

0.156178 0.353262

output:

11111111111111111111111111111111111111222112122121

result:

ok ok

Test #29:

score: 0
Accepted
time: 1ms
memory: 3772kb

input:

0.398701 0.040258

output:

11111111111111111111111111111111111111212112121111

result:

ok ok

Test #30:

score: 0
Accepted
time: 0ms
memory: 3724kb

input:

0.973859 0.000184

output:

111111111111

result:

ok ok

Test #31:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

0.882213 0.556709

output:

11111111111111111111111111111111111111111212221112

result:

ok ok

Test #32:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

0.263822 0.460984

output:

11111111111111111111111111111111111111111112212221

result:

ok ok

Test #33:

score: 0
Accepted
time: 1ms
memory: 3740kb

input:

0.443432 0.034841

output:

11111111111111111111111111111111111111222211121111

result:

ok ok