A. C+= 800 / 模拟 思维
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. C+= 800 / 模拟 思维相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1368/A
模拟即可,它这个递增很快的,不会超时。
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
int t; cin>>t;
while(t--)
{
int a,b,n; cin>>a>>b>>n;
int cnt=0;
while(!(a>n||b>n))
{
if(a<b) a=a+b,cnt++;
else b=a+b,cnt++;
}
cout<<cnt<<endl;
}
return 0;
}
以上是关于A. C+= 800 / 模拟 思维的主要内容,如果未能解决你的问题,请参考以下文章
A. Level Statistics1200 / 思维 模拟
A. Level Statistics1200 / 思维 模拟
A. Level Statistics1200 / 思维 模拟
Codeforces Round #656 (Div. 3) A. Three Pairwise Maximums(思维/构造)