Mysterious Light

编程入门 行业动态 更新时间:2024-10-10 00:20:57

<a href=https://www.elefans.com/category/jswz/34/1707623.html style=Mysterious Light"/>

Mysterious Light

 Mysterious Light

题目描述

Snuke is conducting an optical experiment using mirrors and his new invention, the rifle of Mysterious Light.

Three mirrors of length N are set so that they form an equilateral triangle. Let the vertices of the triangle be a,b and c.

Inside the triangle, the rifle is placed at the point p on segment ab such that ap=X. (The size of the rifle is negligible.) Now, the rifle is about to fire a ray of Mysterious Light in the direction of bc.

The ray of Mysterious Light will travel in a straight line, and will be reflected by mirrors, in the same ways as "ordinary" light. There is one major difference, though: it will be also reflected by its own trajectory as if it is a mirror! When the ray comes back to the rifle, the ray will be absorbed.

The following image shows the ray's trajectory where N=5 and X=2.
It can be shown that the ray eventually comes back to the rifle and is absorbed, regardless of the values of N and X. Find the total length of the ray's trajectory.

Constraints
2≦N≦1012
1≦X≦N−1
N and X are integers.
Partial Points
300 points will be awarded for passing the test set satisfying N≦1000.
Another 200 points will be awarded for passing the test set without additional constraints.

输入

The input is given from Standard Input in the following format:N X

输出

Print the total length of the ray's trajectory.

样例输入

5 2

样例输出

12

提示

Refer to the image in the Problem Statement section. The total length of the trajectory is 2+3+2+2+1+1+1=12.


我当时做题是用while模拟的过程。之后看了题解才知道有规律。

#include<iostream>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include<cmath>
typedef long long ll;
using namespace std;int main (){ll n,x;ll count1,temp,sum,tt,a,b,p;scanf("%lld%lld",&n,&x);sum=n;a=n-x;b=x;if(n-x==x){printf("%lld\n",x*3);return 0;}else if(n-x<=x)swap(a,b);count1=a/b;temp=b;tt=a;while(tt%temp){sum+=count1*2*temp;p=tt;tt=temp;temp=p-temp*count1;count1=tt/temp;}printf("%lld\n",sum+count1*2*temp-temp);return 0;
}
#include<bits/stdc++.h>
typedef long long ll;
using namespace std;
int main (){ll n,x;scanf("%lld%lld",&n,&x);printf("%lld\n",3*(n-__gcd(n,x)));return 0;
}


更多推荐

Mysterious Light

本文发布于:2024-02-27 17:47:25,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1707622.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:Mysterious   Light

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!