cfCodeforces Round #432 (Div. 2,

第一题:找规律就好了,前k个和后n到n+k是不一样的,中间都是k。

#include <vector>
#include <cstdio>
#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
    int n,k,t;
    scanf("%d%d%d",&n,&k,&t);
    if(t<=k) cout<<t;
    else if(t>k&&t<n) cout<<k;
    else cout<<n+k-t;
    return 0;
}

第二题:三个点,我开始的思路是两个点距离相等,并且两个向量垂直。

然而只要三点不共线,就存在解。

程序是只要两个点的中点不与b相等。

#include<iostream>
#include<cstdio>
#include <algorithm>
#include <cstring>
#include <set>
using namespace std;
typedef long long LL;
LL  f2(int x,int y,int a,int b){
return (b-y)*(LL)(b-y)+(a-x)*(LL)(a-x);
}
int main()
{
    int x1,y1,x2,y2,x3,y3;
    scanf("%d%d%d%d%d%d",&x1,&y1,&x2,&y2,&x3,&y3);
    if((x1+x3)==2*x2&&(y1+y3)==2*y2) return 0*printf("No");



    if(f2(x1,y1,x2,y2)==f2(x2,y2,x3,y3)) return 0*printf("Yes");

    return 0*printf("No");

}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值