QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#65105#5115. Clone RanransunseaTL 2ms3444kbC++14484b2022-11-27 16:32:282022-11-27 16:32:31

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-11-27 16:32:31]
  • 评测
  • 测评结果:TL
  • 用时:2ms
  • 内存:3444kb
  • [2022-11-27 16:32:28]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
void solve(){
	int a,b,c;
	cin>>a>>b>>c;
	int t=0;
	int z=c;
	while(z>1){
		t++;
		z>>=1;
	}
	t++;
	int ans=0x3f3f3f3f3f;
	for(int i=0;i<=t;i++){
		int num=(1<<i);
		int x=(c/num)+(c%num!=0);
		if(ans>=x*b+i*a){
			ans=x*b+i*a;
		}else{
			break;
		}
	}
	cout<<ans<<endl;
}
signed main(){
	ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
	int _;cin>>_;while(_--) solve();
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 3444kb

input:

5
1 1 1
2 3 3
9 9 9
3 26 47
1064 822 1048576

output:

1
7
45
44
21860

result:

ok 5 number(s): "1 7 45 44 21860"

Test #2:

score: -100
Time Limit Exceeded

input:

99500
1000000000 1000000000 1000000000
1000000000 1000000000 999999999
1000000000 1000000000 999999998
1000000000 1000000000 999999997
1000000000 1000000000 999999996
1000000000 1000000000 999999995
1000000000 1000000000 999999994
1000000000 1000000000 999999993
1000000000 1000000000 999999992
10000...

output:

271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
271644049215
2...

result: