码迷,mamicode.com
首页 > 其他好文 > 详细

洛谷P1161 开灯 数学

时间:2017-05-21 22:31:01      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:space   ring   color   std   ble   code   amp   奇数   stream   

其实这道题就是让你求这些数字中 出现了奇数次数的唯一的那个数
然后我们发现出现偶数次的话 因为 x^x=0 0^x=x
所以将这些数 异或起来最后剩下的那个数就是答案了

 

 1 #include <cstdio>
 2 #include <cmath>
 3 #include <cstring>
 4 #include <cstdlib>
 5 #include <string>
 6 #include <algorithm>
 7 #include <iomanip>
 8 #include <iostream>
 9 using namespace std ;
10 
11 const double esp = 0.000001 ;
12 int n,b ;
13 int sum ;
14 double a ;
15 
16 int main() 
17 {
18     scanf("%d",&n) ;
19     for(int i=1;i<=n;i++) 
20     {
21         scanf("%lf%d",&a,&b) ;
22         for(int j=1;j<=b;j++) 
23             sum = sum^(int)(a*j+esp) ;
24     }
25     printf("%d\n",sum ) ;
26     return 0 ;
27 }

 

洛谷P1161 开灯 数学

标签:space   ring   color   std   ble   code   amp   奇数   stream   

原文地址:http://www.cnblogs.com/third2333/p/6886227.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!