1081 Rational Sum

cpp 复制代码
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long ll;
struct frac{
    ll up;
    ll down;
};
ll gcd(ll a, ll b){
    if(b == 0){
        return a;
    }
    return gcd(b, a % b);
}

frac reduc(frac a){
    if(a.down < 0){
        a.down = -a.down;
        a.up = -a.up;
    }
    if(a.up == 0){
        a.down = 1;
    }else{
        ll d = gcd(abs(a.up), abs(a.down));
        a.up = a.up / d;
        a.down = a.down / d;
    }
    return a;
}

frac add(frac a, frac b){
    frac res;
    res.down = a.down * b.down;
    res.up = a.up*b.down + b.up*a.down;
    return reduc(res);
}
int main() {
    int n;
    scanf("%d", &n);
    frac res,cur;
    res.up=0;
    res.down=1;
    for(int i = 0;i < n; i++){
        scanf("%lld/%lld", &cur.up, &cur.down);
        res = add(res, cur);
    }
    if(res.down == 1){
        printf("%lld\n",res.up);
    }else{
        if(res.up > res.down){
            printf("%lld %lld/%lld\n",res.up / res.down, res.up % res.down, res.down);
        }else{
            printf("%lld/%lld\n", res.up, res.down);
        }
    }
    return 0;
}
相关推荐
QxQ么么7 分钟前
移远通信(桂林)26校招-助理AI算法工程师-面试纪录
人工智能·python·算法·面试
Mz12212 小时前
day05 移动零、盛水最多的容器、三数之和
数据结构·算法·leetcode
SoleMotive.2 小时前
如果用户反映页面跳转得非常慢,该如何排查
jvm·数据库·redis·算法·缓存
念越3 小时前
判断两棵二叉树是否相同(力扣)
算法·leetcode·入门
ghie90904 小时前
线性三角波连续调频毫米波雷达目标识别
人工智能·算法·计算机视觉
却话巴山夜雨时i4 小时前
74. 搜索二维矩阵【中等】
数据结构·算法·矩阵
sin_hielo4 小时前
leetcode 3512
数据结构·算法·leetcode
_F_y4 小时前
二分:二分查找、在排序数组中查找元素的第一个和最后一个位置、搜索插入位置、x 的平方根
c++·算法
Elias不吃糖4 小时前
LeetCode--130被围绕的区域
数据结构·c++·算法·leetcode·深度优先