codeforces 987B
Posted coder-tcm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codeforces 987B相关的知识,希望对你有一定的参考价值。
给你两个数x, y, 比较 x^y 和 y ^ x 的大小
Input
两个数 x, y, ( 1 <= x , y <= 109 )
Output
如果 x ^ y < y ^ x , 输出 “<”
如果 x ^ y > y ^ x , 输出 “>”
如果 x ^ y = y ^ x , 输出 “=”
Sample Input
Input
5 8
Output
>
Input
10 3
Output
<
Input
6 6
Output
=
x^y 和 y^x 比大小 不好比
可以转成求 y*logx 和 x*logy 的大小
#include <iostream> #include <cmath> using namespace std; int main() { int x,y; cin>>x>>y; if(y*log(x)<x*log(y)) cout<<"<"<<endl; else if(y*log(x)==x*log(y)) cout<<"="<<endl; else cout<<">"<<endl; return 0; }
以上是关于codeforces 987B的主要内容,如果未能解决你的问题,请参考以下文章
CF987B High School: Become Human 数学
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
Codeforces 86C Genetic engineering(AC自动机+DP)