欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CF-Codeforces Round #485 (Div. 2)-B-High School: Become Human

程序员文章站 2022-05-22 15:49:44
...

ACM模版

描述

CF-Codeforces Round #485 (Div. 2)-B-High School: Become Human

题解

这个题让比较 xyyx,因为数据范围大,所以直接求肯定不行,这里可以两边取 log,这样就变成了 ylog(x)xlog(y) 的比较了,不过这里存在一个坑点,需要直接拿这两者进行比较,不要保存到 double 型的第三方变量里,因为会精度损失导致 WA,(⊙o⊙)…额,我猜是精度损失导致的。

代码

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <cmath>

using namespace std;

long long x, y;

int main(int argc, const char * argv[])
{
#if DEBUG
    freopen("/Users/zyj/Desktop/input.txt", "r", stdin);
    freopen("/Users/zyj/Desktop/output.txt", "w", stdout);
#endif

    cin >> x >> y;

    if (y * log10(x) < x * log10(y))
    {
        cout << "<" << '\n';
    }
    else if (y * log10(x) > x * log10(y))
    {
        cout << ">" << '\n';
    }
    else
    {
        cout << "=" << '\n';
    }

    return 0;
}
相关标签: 数学