2020牛客暑期多校训练营(第四场) F-Finding the Order(思维)
程序员文章站
2022-03-02 11:45:24
...
题目链接
思路:
又是一道思维拉胯题,感觉我自己写的代码和题解这个代码相比起来就是坨*,思路是根据三角形两边之和大于第三边的性质,交叉的线之大于两边的线,所以我们只需要判断ac+bd和ad+bc哪两个才是两边的线即可。
代码:
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
const int N=2e5+7;
const double eps=1e-8;
const int mod=1e9+7;
const int inf=0x7fffffff;
const double pi=3.1415926535;
signed main()
{
int t;
cin>>t;
while(t--)
{
int ac,ad,bc,bd;
cin>>ac>>ad>>bc>>bd;
if(ac+bd>ad+bc)
{
cout<<"AB//DC"<<endl;
}
else
{
cout<<"AB//CD"<<endl;
}
}
return 0;
}
推荐阅读
-
2020牛客暑期多校训练营(第四场)——Basic Gcd Problem
-
2020牛客暑期多校第二场 C - Cover the Tree(思维/贪心)
-
2020牛客暑期多校训练营(第四场)F题
-
2020牛客暑期多校训练营(第四场)——Basic Gcd Problem
-
2020牛客暑期多校第四场 H - Harder Gcd Problem(思维/构造)
-
牛客暑假多校2020第四场H题, 思维题
-
2020牛客暑期多校 第四场H-Harder Gcd Problem(思维,gcd)
-
2019牛客暑期多校训练营(第四场)K number(思维)
-
2019牛客暑期多校训练营(第四场)K number(思维)
-
2019牛客暑期多校训练营 第四场 K – number (思维+前缀和)