Codeforce - 267 - A. Subtractions

本文介绍了一种算法,该算法通过不断将较大数减去较小数的方式,直至其中一个数变为0,以此来计算操作次数。文章提供了一个AC代码示例,展示了如何使用C++实现这一过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A. Subtractions
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
You’ve got two numbers. As long as they are both larger than zero, they go through the same operation: subtract the lesser number from the larger one. If they equal substract one number from the another. For example, one operation transforms pair (4,17) to pair (4,13), it transforms (5,5) to (0,5).

You’ve got some number of pairs (ai, bi). How many operations will be performed for each of them?

Input
The first line contains the number of pairs n (1  ≤  n  ≤  1000). Then follow n lines, each line contains a pair of positive integers ai, bi (1  ≤  ai,  bi  ≤  109).

Output
Print the sought number of operations for each pair on a single line.

Examples
input
2
4 17
7 987654321
output
8
141093479

题意:大数减小数,直到其中一个数为 0 为止。求步数。

AC代码:

#include <iostream>
using namespace std;

int main()
{
    int n;
    cin>>n;
    while (n--)
    {
        int a,b;
        cin>>a>>b;
        int ans=0;
        int mn=min(a,b),mx=max(a,b);
        int ansmn=mn,ansmx=mx;
        do
        {
            ans+=(mx/mn);
            mx%=mn;
            ansmn=min(mx,mn);ansmx=max(mx,mn);
            mn=ansmn;mx=ansmx;
        }while (mx && mn);
        cout<<ans<<endl;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值