概述
题目出处:codeforces - 29A
水题,计算下每个终点,比较起点和终点不在同一点,就吐不到
the accepted code like this :
//
// main.cpp
// CF29A
//
// Created by IntelliegeWither on 15/12/2.
// Copyright © 2015年 IntelliegeWither. All rights reserved.
//
#include<stdio.h>
int main()
{
int a[105],d[105],zd[105];
int n;
int i,j,sign=0;
scanf("%d",&n);
for(i=0;i<n;i++)
{
scanf("%d%d",&a[i],&d[i]);
zd[i]=a[i]+d[i];
}
for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
{
if(i!=j&&a[i]==zd[j]&&a[j]==zd[i])//相互吐不中,标记
{
sign=1;
}
}
}
if(sign)
{
printf("YESn");
}
else
{
printf("NOn");
}
}
最后
以上就是魔幻羽毛为你收集整理的CodeForces - 29A - Spit Problem的全部内容,希望文章能够帮你解决CodeForces - 29A - Spit Problem所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复