Codeforces Beta Round #96 (Div. 2) (二进制数取模)

本文详细解析了将Brainfuck指令集转换为Unary数制的算法过程,并提供了实例演示,帮助理解转换逻辑及计算结果。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B. Unary
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Unary is a minimalistic Brainfuck dialect in which programs are written using only one token.

Brainfuck programs use 8 commands: "+", "-", "[", "]", "<", ">", "." and "," (their meaning is not important for the purposes of this problem). Unary programs are created from Brainfuck programs using the following algorithm. First, replace each command with a corresponding binary code, using the following conversion table:

  • "> →  1000,
  • "< →  1001,
  • "+ →  1010,
  • "- →  1011,
  • ". →  1100,
  • ", →  1101,
  • "[ →  1110,
  • "] →  1111.

Next, concatenate the resulting binary codes into one binary number in the same order as in the program. Finally, write this number using unary numeral system — this is the Unary program equivalent to the original Brainfuck one.

You are given a Brainfuck program. Your task is to calculate the size of the equivalent Unary program, and print it modulo1000003 (106 + 3).

<p< p="" style="font-family: verdana, arial, sans-serif; font-size: 14px; line-height: 21px; "><p< p="">
Input
<p< p="">

The input will consist of a single line p which gives a Brainfuck program. String p will contain between 1 and 100 characters, inclusive. Each character of p will be "+", "-", "[", "]", "<", ">", "." or ",".

<p< p=""><p< p="">
Output
<p< p="">

Output the size of the equivalent Unary program modulo 1000003 (106 + 3).

<p< p=""><p< p="">
Sample test(s)
<p< p=""><p< p="">
input
,.
output
220
input
++++[>,.<-]
output
61425
<p< p=""><p< p="">
Note
<p< p="">

To write a number n in unary numeral system, one simply has to write 1 n times. For example, 5 written in unary system will be 11111.

In the first example replacing Brainfuck commands with binary code will give us 1101 1100. After we concatenate the codes, we'll get 11011100 in binary system, or 220 in decimal. That's exactly the number of tokens in the equivalent Unary program.


#include<cstring>
#include<iostream>
using namespace std;

char table[8][5] = {
    "1000",
    "1001",
    "1010",
    "1011",
    "1100",
    "1101",
    "1110",
    "1111"
};

char str[300];
int hash[300];
const int P = 1000003;

int main()
{
    hash['>'] = 0;
    hash['<'] = 1;
    hash['+'] = 2;
    hash['-'] = 3;
    hash['.'] = 4;
    hash[','] = 5;
    hash['['] = 6; 
    hash[']'] = 7;

    cin >> str;
    int len = strlen(str);
    int res = 0;
    for ( int i = 0; i < len; i++ )
        for ( int j = 0; j < 4; j++ )
            res = ( res * 2 + table[ hash[str[i]] ][j] - '0' ) % P;
    cout << res << endl;
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值