CodeForces 593B

Posted 猫哥小俊

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 593B相关的知识,希望对你有一定的参考价值。

题意:直线方程y=k*x+b,给你n条直线的k和b(没有相同的直线),在x∈(x1,x2)的区间里,如果存在两条直线相交,则输出YES,否则输出NO。

题解;如果存在两条直线L[i],L[j]在区间(x1,x2)处相交,则有(y1[i]-y2[i])*(y1[j]-y2[j])<0;我们可以利用库函数sort()的一些性质求解。①时间复杂度为O(NlogN),②每个元素都有比较(与定义的cmp函数有关)。具体解法看代码。

#include <iostream>
#include <cstdio>
#include <algorithm>

using namespace std;

struct node
{
    long long y1,y2;
}l[100005];

bool ok=false;

bool cmp(node x,node y)
{
     if((x.y1-y.y1)<0 && (x.y2-y.y2)>0) ok=true;
     if((x.y1-y.y1)>0 && (x.y2-y.y2)<0) ok=true;
     if(x.y1==y.y1) return x.y2<y.y2;
     return x.y1<y.y1;
}

int main()
{
    int n;
    scanf("%d",&n);
    long long x1,x2;
    scanf("%I64d%I64d",&x1,&x2);
    long long k,b;
    for(int i=0;i<n;i++)
    {
        scanf("%I64d%I64d",&k,&b);
        l[i].y1=k*x1+b;
        l[i].y2=k*x2+b;
    }
    ok=false;
    sort(l,l+n,cmp);
    if(ok) printf("YES\\n");
    else printf("NO\\n");
    return 0;
}
View Code

 

以上是关于CodeForces 593B的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp Codeforces片段

Codeforces 86C Genetic engineering(AC自动机+DP)

CodeForces 1005D Polycarp and Div 3(思维贪心dp)

(Incomplete) Codeforces 394 (Div 2 only)

CodeForces 931F Teodor is not a liar!

这个c代码有啥问题?