您的位置:首页 > 其它

Codeforces Round #296 (Div. 2) -----A. Playing with Paper

2015-04-18 21:30 393 查看
A. Playing with Papertime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputOne day Vasya was sitting on a not so interesting Maths lesson and making an origami from a rectangular a mm  ×  b mm sheet of paper (a > b). Usually the first step in making an origami is making a square piece of paper from the rectangular sheet by folding the sheet along the bisector of the right angle, and cutting the excess part.After making a paper ship from the square piece, Vasya looked on the remaining (a - b) mm  ×  b mm strip of paper. He got the idea to use this strip of paper in the same way to make an origami, and then use the remainder (if it exists) and so on. At the moment when he is left with a square piece of paper, he will make the last ship from it and stop.Can you determine how many ships Vasya will make during the lesson?InputThe first line of the input contains two integers a, b (1 ≤ b < a ≤ 1012) — the sizes of the original sheet of paper.OutputPrint a single integer — the number of ships that Vasya will make.Sample test(s)input
2 1
output
2
input
10 7
output
6
input
1000000000000 1
output
1000000000000
NotePictures to the first and second sample test.开始是使用数组模拟,一个一个去减,直接返回TLE,然后想到可以求余(a/b)(a%b) 就AC了,以下为代码
#include<iostream>
using namespace std;
int main()
{
long long a,b,ans;
ans=0;
cin>>a>>b;
for(;;)
{
if(a>b)
    {
ans+=a/b;
a=a%b;
}
else
    {
ans+=b/a;
b=b%a;
}
if(a<=0||b<=0)
break;
}
cout<<ans;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: