(你还是调了很长时间!对说的就是你!)
#include <stdio.h>
#include <algorithm>
#define N 100100
using namespace std ;
int n , m ;
struct node
{
char s[5] ;
int num ;
};
node door[N] ;
int bit[35] ;
int arr[35] ;
void init()
{
int tmp = 1 ;
for(int i = 1 ; i <= 31 ; i++)
{
bit[i] = tmp ;
tmp<<=1;
}
}
int main()
{
scanf("%d%d" , &n , &m) ;
for(int i = 1 ; i <= n ; i++)
{
scanf("%s" , door[i].s) ;
scanf("%d" , &door[i].num) ;
}
init() ;
int ans = 0 ;
int tmp = 0 ;
for(int i = 31 ; i >= 1 ; i--)
{
int x1 = 0 , x2 = bit[i] ;
// x1 -> 0 , x2 -> 1 ;
for(int j = 1 ; j <= n ; j++)
{
if(door[j].s[0]==‘A‘)
{
x1 &= (door[j].num&bit[i]) ;
x2 &= (door[j].num&bit[i]) ;
}else if(door[j].s[0]==‘X‘)
{
x1 ^= (door[j].num&bit[i]) ;
x2 ^= (door[j].num&bit[i]) ;
}else
{
x1 |= (door[j].num&bit[i]) ;
x2 |= (door[j].num&bit[i]) ;
}
}
if(x1)
{
ans |= 1<<(i-1) ;
continue ;
}
if(!x1&&x2)
{
if((tmp|x2)<=m)
{
ans |= 1<<(i-1) ;
tmp |= x2 ;
}
}
}
printf("%d\n" , ans) ;
}
BZOJ 3668 [Noi2014]起床困难综合症 贪心+位运算
原文地址:http://blog.csdn.net/wzq_qwq/article/details/45625915