NOI '16 P6 - Computation

View as PDF

Submit solution

Points: 30 (partial)
Time limit: 30.0s
Memory limit: 1G

Problem types

Attention: In NOI 2016, this problem is an output-only problem. Since DMOJ does not directly support output-only problems, you should treat this problem as a traditional problem where the input is the task to solve. You should produce the output by a program (hardcoding is fine). The time limit is extremely generous, so please be reasonable when attempting the problem at DMOJ.

Given a task, you should write a program that solves the task using the instructions below. Let xt denote the result of the t-th instruction. The permitted instructions, the syntax, and the result xt are given below:

NameOperatorParametersEffects
InputIN/ARead a real number from the terminal and make the number xt
OutputOiPrint xi to the terminal, and xt=xi
Addition+ijxt=xi+xj
Adding constantCicxt=xi+c
Negate-ixt=xi
Left shift<ikxt=xi2k
Right shift>ikxt=xi2k
SSixt=s(xi)
ComparisonPijxt={1xi<xj0xi=xj1xi>xj
MaxMijxt={xixi>xjxjxixj
Multiplication*ijxi=xixj

Here, the definition of s(x) is given below where e=2.718281828459045 is the base of natural logarithm:

s(x)=11+ex.

Notice there is a penalty for using the P, M, and * operators. See details below in the "grading" section.

For each instruction, the parameters i and j must be smaller than the current instruction number t. The instructions are executed in the order, one by one.

The operations have finite precision: in particular, the results are only accurate up to 90 digits after the decimal point and the rest will be rounded. Similarly, the argument c to the adding constant instruction can have at most 90 digits in its decimal part.

For left shift and right shift instructions, k must be a non-negative integer not exceeding 10000.

The ten tasks are given below:

  • Task 1: Given a,b where |a|,|b|109 and a,b have at most 9 digits in their decimal parts, compute 2a2b.
  • Task 2: Given a where |a|109 and a has at most 9 digits in its decimal part, compute 11+e17a.
  • Task 3: Given a where |a|109 and a has at most 9 digits in its decimal part, compute {1a<00a=01a>0.
  • Task 4: Given a where |a|109 and a has at most 9 digits in its decimal part, compute the absolute value of a, |a|.
  • Task 5: Given a1,,a32 where a1,,a32{0,1}, treat a1a2a32 as a binary number where a1 is the most significant bit and a32 is the least significant bit, compute the corresponding value (in base 10).
  • Task 6: Given integer a where 0a<232, output 32 integers denoting a in base 2 representation. The most significant bit should be printed first and the least significant bit should be printed last. If a has less than 32 bits in its binary representation, add leading 0s.
  • Task 7: Given integers a,b where 0a,b<232, compute the bitwise XOR of a and b.
  • Task 8: Given a where |a|109 and a has at most 9 digits in its decimal part, output a10.
  • Task 9: Given a1,,a16 where |ai|109 and ai has at most 9 digits in its decimal part, print 16 real numbers representing the result of sorting a1,,a16 in ascending order.
  • Task 10: Given integers a,b,m where 0a,b<232, 1m<232, compute the remainder after dividing a×b by m (i.e. compute a×bmodm).

Input Specification

The input consists of an integer denoting the task to solve.

Output Specification

For each output, you need to output several lines. The i-th line describes the i-th instruction: first, you should output a letter denoting the operation. Then output several (or zero) integers denoting the parameters to the operation. The operator and the parameters (and between parameters) should be separated by a single space.

You can output at most 104 lines.

Sample Input

Copy
1

Sample Output

Copy
I
+ 1 1
- 2
I
+ 4 4
- 5
+ 3 6
- 7
- 8
O 9

Explanation for Sample

This program solves the first task. It has 10 instructions, which should give you 3 points on the task.

Grading

You are given nodes1.ans to nodes10.ans as well as example checkers. Each file corresponds to the grading parameters of the given task.

The test cases and the checker are available here.

Each file consists of 10 lines. The i-th line consists of a parameter wi. The perfect score for a task is 10 points, and the tasks are graded independently.

If your output is not well-formatted or does not comply with the restrictions outlined in the problem, you will get 0 points on the task.

Otherwise, the checker will generate several test cases and run your program over the test cases.

If at some intermediate step during execution, the result xt has an absolute value exceeding 101000, you will get 0 points on the subtask.

If one of the numbers printed (by an O instruction) by your program differs with the expected output by at least 109, you will get 0 points on the subtask.

If your program passes the test cases, the number of points you get on the task, i, is the maximum i such that nwi where n is the number of instructions in your program. If n>w1, you will receive 0 points.

In particular, if you use comparison P, max M, or multiplication * instructions, for each type of instruction used, you will receive a penalty of 4 points for the task. Notice here the number of times you use each of the instructions is not relevant - what matters is the type of instructions used. For example, if you only use the comparison instruction but use it multiple times, you will receive a 4 point deduction for the task. If you use both comparison and multiplication once, you will receive an 8 point deduction for the task.

You can at least receive 0 points on a task: you won't receive a negative point on any task.

If you receive WA (Presentation Error) at DMOJ, it is likely that the program you wrote has syntax errors. If your program tries to read additional numbers from the terminal, contains too many instructions, has invalid parameters, overflows at some intermediate steps, or produces wrong outputs over a test case for your program, you shall receive WA.

Testing your output

First, please switch to the folder for the problem in the terminal using cd nodes: this assumes the nodes folder contains the inputs, outputs, and the checker for the problem.

Next, if you are using 64-bit Linux, run ./checker_linux64 <case_no> where <case_no> is the number of the task. For example, ./checker_linux64 3 grades nodes3.out.

If you are using Windows, run ./checker_win32 3.

If you are using 32-bit Linux, run ./checker_linux32 3.

If you are using Linux and you cannot run the checker, try executing chmod +x checker_linux64 or chmod +x checker_linux32 in the terminal and retry.

Finally, in the terminal you can use the command ./checker -f <file_name> to run the program given by <file_name> and interact with the terminal.

Warning: The checker provided does not necessarily run the same set of test cases as the checker for final evaluation!


Comments

There are no comments at the moment.