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

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;
}

相关标签: 思维