比赛 round 2『计协冻梨桐难霍』 评测结果 AAAAAAAAAAAA
题目名称 fruitFeast 最终得分 100
用户昵称 Davinci 运行时间 0.045 s
代码语言 C++ 内存使用 3.49 MiB
提交时间 2024-11-22 09:21:51
显示代码纯文本
#include<cstdio>
#include<cstdlib>
#include<iostream>
using namespace std;
int t,a,b,maxx;
void dfs(int v,bool d){
	if(v>t){
		return;  
	}
	if(v==t){
		cout<<t;
		exit(0);
	}
	if(v>maxx){
		maxx=v;
	}  
	if(d){
		dfs(v/2,0); 
	}	
	dfs(v+a,d);
	dfs(v+b,d);  
	return;
}
int main(){
	freopen("fruitFeast.in","r",stdin);
	freopen("fruitFeast.out","w",stdout);
	cin>>t>>a>>b;
	dfs(0,1);
	cout<<maxx;
	fclose(stdin);
	fclose(stdout);
	return 0;
}