Codeforces Round #370 (Div. 2) C

Description

Memory is now interested in the de-evolution of objects, specifically triangles. He starts with an equilateral triangle of side length x, and he wishes to perform operations to obtain an equilateral triangle of side length y.

In a single second, he can modify the length of a single side of the current triangle such that it remains a non-degenerate triangle (triangle of positive area). At any moment of time, the length of each side should be integer.

What is the minimum number of seconds required for Memory to obtain the equilateral triangle of side length y?

Input

The first and only line contains two integers x and y (3 ≤ y < x ≤ 100 000) — the starting and ending equilateral triangle side lengths respectively.

Output

Print a single integer — the minimum number of seconds required for Memory to obtain the equilateral triangle of side length y if he starts with the equilateral triangle of side length x.

Examples
Input
6 3
Output
4
Input
8 5
Output
3
Input
22 4
Output
6
Note

In the first sample test, Memory starts with an equilateral triangle of side length 6 and wants one of side length 3. Denote a triangle with sides a, b, and c as (a, b, c). Then, Memory can do .

In the second sample test, Memory can do .

In the third sample test, Memory can do:

.

题意:将一个大的等边三角形变为小的等边三角形,最小需要几步

解法:我们倒过来考虑要方便很多,先增加其中一条边到最大,然后增加第二条边,依次循环到大的等边三角形

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n,m;
    int a,b,c;
    int pos;
    int cot=0;
    cin>>n>>m;
    a=m,b=m,c=m;
    while(a!=n||b!=n||c!=n)
    {
        if(a!=n)
        {
            int pos1;
            //cout<<"A"<<endl;
            for(int i=1; i<=n; i++)
            {
               // cout<<"B"<<endl;
               // cout<<a<<" "<<b<<" "<<c<<endl;
                if((a+i)+b>c&&(b+c)>(a+i)&&(a+i)+c>b&&(a+i)<=n)
                {
                    pos1=i;
                   // cot++;
                }
            }
            a=a+pos1;
            cot++;
           // cout<<a<<endl;
           // break;
         //  cout<<a<<" "<<b<<" "<<c<<endl;
        }
      //  cout<<a<<" "<<b<<" "<<c<<endl;
      //  break;
        if(b!=n)
        {
            int pos2;
            for(int i=1; i<=n; i++)
            {
               // cout<<"B"<<endl;
                if((b+i)+a>c&&(a+c)>(b+i)&&(b+i)+c>a&&(b+i)<=n)
                {
                   // b=b+i;
                    pos2=i;
                    //cot++;
                }
            }
            b=b+pos2;
            cot++;
          //  cout<<a<<" "<<b<<" "<<c<<endl;
        }
     //   cout<<a<<" "<<b<<" "<<c<<endl;
       // break;
        if(c!=n)
        {
            int pos3;
            for(int i=1; i<=n; i++)
            {
                if((c+i)+a>b&&b+(c+i)>a&&b+a>c+i&&(c+i)<=n)
                {
                   // cout<<i<<endl;
                    pos3=i;
                   // c=c+i;
                   // cot++;
                }
 
            }
 
            c=pos3+c;
            cot++;
         //   cout<<a<<" "<<b<<" "<<c<<endl;
        }
      //  break;
       // cout<<a<<" "<<b<<" "<<c<<endl;*/
    }
    cout<<cot<<endl;
    return 0;
}

  

posted @   樱花落舞  阅读(247)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
· 三行代码完成国际化适配,妙~啊~
点击右上角即可分享
微信分享提示