zoukankan      html  css  js  c++  java
  • Codeforces Round #443 (Div. 2)

    C. Short Program

    Petya learned a new programming language CALPAS. A program in this language always takes one non-negative integer and returns one non-negative integer as well.

    In the language, there are only three commands: apply a bitwise operation AND, OR or XOR with a given constant to the current integer. A program can contain an arbitrary sequence of these operations with arbitrary constants from 0 to 1023. When the program is run, all operations are applied (in the given order) to the argument and in the end the result integer is returned.

    Petya wrote a program in this language, but it turned out to be too long. Write a program in CALPAS that does the same thing as the Petya's program, and consists of no more than 5 lines. Your program should return the same integer as Petya's program for all arguments from 0 to 1023.

    Input

    The first line contains an integer n (1 ≤ n ≤ 5·105) — the number of lines.

    Next n lines contain commands. A command consists of a character that represents the operation ("&", "|" or "^" for AND, OR or XOR respectively), and the constant xi 0 ≤ xi ≤ 1023.

    Output

    Output an integer k (0 ≤ k ≤ 5) — the length of your program.

    Next k lines must contain commands in the same format as in the input.

    Examples
    input
    3
    | 3
    ^ 2
    | 1
    output
    2
    | 3
    ^ 2
    input
    3
    & 1
    & 3
    & 5
    output
    1
    & 1
    input
    3
    ^ 1
    ^ 2
    ^ 3
    output
    0
    Note

    You can read about bitwise operations in https://en.wikipedia.org/wiki/Bitwise_operation.

    Second sample:

    Let x be an input of the Petya's program. It's output is ((x&1)&3)&5 = x&(1&3&5) = x&1. So these two programs always give the same outputs.

    题意:给一个任意数x,进行位运算,求怎么简化到不超过5次。

    分析:看出每次的操作数不超过2^10-1,先用0000000000,1111111111,进行题意的操作,发现规律,01-----> 0/1,通过 | ^ & 运算使得它成立。

    #include <bits/stdc++.h>
    
    using namespace std;
    
    bool calc(int a,int i) {
        if(a&(1<<i)) return 1;
        return 0;
    }
    
    int main()
    {
        int n;
        int x = 0,y = 1023;
    
        cin>>n;
        while(n--) {
            char str[5];
            int t;
            scanf("%s%d",str,&t);
    
            if(str[0]=='|') x|=t,y|=t;
    
            if(str[0]=='&') x&=t,y&=t;
    
            if(str[0]=='^') x^=t,y^=t;
    
        }
    
        int v1 = 0; // |
        int v2 = 0; // ^
        int v3 = 1023;
        for(int i = 0; i < 10; i++) {
            if(calc(x,i)&&calc(y,i)) v1 = v1 + (1<<i);
            if(calc(x,i)&&!calc(y,i)) v2 = v2 + (1<<i);
            //if(!calc(x,i)&&calc(y,i))
            if(!calc(x,i)&&!calc(y,i)) v3 = v3 - (1<<i);
        }
    
    
        printf("3
    ");
    
        printf("| %d
    ",v1);
        printf("^ %d
    ",v2);
        printf("& %d
    ",v3);
    
    
        return 0;
    }
  • 相关阅读:
    js 获取和设置css3 属性值的实现方法
    API的自动化测试
    删除html标签或标签属性以及样式
    JS+CSS实现数字滚动
    video元素和audio元素相关事件
    SDT v0.0.1 上线
    safari浏览器fixed后,被软键盘遮盖的问题—【未解决】
    js中DOM事件探究
    使用Web存储API存取本地数据
    剑指offer(Java版)第七题:用两个栈实现一个队列。队列的声明如下,请实现它的两个函数appendTail和deleteHead, 分别完成在队列尾部插入结点和在队列头部删除结点的功能。
  • 原文地址:https://www.cnblogs.com/TreeDream/p/7751329.html
Copyright © 2011-2022 走看看