[2016-03-22][CF][69A][Young Physicist]

Posted 红洋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[2016-03-22][CF][69A][Young Physicist]相关的知识,希望对你有一定的参考价值。

  • 时间:2016-03-22 19:41:34 星期二

  • 题目编号:[2016-03-22][CF][69A][Young Physicist]

  • 题目大意:判断向量和是否为0

  • 分析:对应坐标相加

  • 遇到的问题:不能用x+y+z来判断是否都为0,除非输入都是正数

  1. #include <cstdio>
  2. using namespace std;
  3. int main(){
  4. int a,b,c,x,y,z,n;
  5. x = y = z = 0;
  6. scanf("%d",&n);
  7. for(int i = 0; i < n ;++i){
  8. scanf("%d%d%d",&a,&b,&c);
  9. x += a;y += b;z += c;
  10. }
  11. puts((x || y || z ? "NO":"YES"));
  12. return 0;
  13. }




以上是关于[2016-03-22][CF][69A][Young Physicist]的主要内容,如果未能解决你的问题,请参考以下文章

CF.810D.Glad to see you!(交互 二分)

应用程序错误“0x69a8674c”

[CF1039D]You Are Given a Tree

「CF1039D」You Are Given a Tree

CF1039D You Are Given a Tree [根号分治]

[CF1039D]You Are Given a Tree[贪心+根号分治]