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

日常补题2017-10-31

时间:2017-10-31 23:49:25      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:ref   style   one   color   using   div   for   ble   force   

 

A. Short Program

很巧妙的处理方式,用0和1023来记录

技术分享
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 int main(){
 5     int n;
 6     scanf("%d", &n);
 7     char s[3];
 8     int op;
 9     int a = 0, b = 1023;
10     for(int i = 0; i < n; i++){
11         scanf("%s %d", s, &op);
12         if(s[0] == |) a |= op, b |= op;
13         if(s[0] == &) a &= op, b &= op;
14         if(s[0] == ^) a ^= op, b ^= op;
15     }
16     int u = 0, v = 0;
17     for(int i = 0; i < 10; i++){
18         int x = 1<<i;
19         if(a&x && b&x) u |= x;
20         if(a&x && ~b&x) v |= x;
21         if(~a&x && ~b&x) u |= x, v |= x;
22     }
23     printf("2\n| %d\n^ %d\n",u, v);
24 }
View Code

 

日常补题2017-10-31

标签:ref   style   one   color   using   div   for   ble   force   

原文地址:http://www.cnblogs.com/yijiull/p/7764322.html

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