CF472F.Design Tutorial: Change the Goal
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are some tasks which have the following structure: you are given a model, and you can do some operations, you should use these operations to achive the goal. One way to create a new task is to use the same model and same operations, but change the goal.
Let's have a try. I have created the following task for Topcoder SRM 557 Div1-Hard: you are given n integers x1,x2,...,xn . You are allowed to perform the assignments (as many as you want) of the following form xi ^= xj (in the original task i and j must be different, but in this task we allow i to equal j ). The goal is to maximize the sum of all xi .
Now we just change the goal. You are also given n integers y1,y2,...,yn . You should make x1,x2,...,xn exactly equal to y1,y2,...,yn . In other words, for each i number xi should be equal to yi .
输入格式
There are some tasks which have the following structure: you are given a model, and you can do some operations, you should use these operations to achive the goal. One way to create a new task is to use the same model and same operations, but change the goal.
Let's have a try. I have created the following task for Topcoder SRM 557 Div1-Hard: you are given n integers x1,x2,...,xn . You are allowed to perform the assignments (as many as you want) of the following form xi ^= xj (in the original task i and j must be different, but in this task we allow i to equal j ). The goal is to maximize the sum of all xi .
Now we just change the goal. You are also given n integers y1,y2,...,yn . You should make x1,x2,...,xn exactly equal to y1,y2,...,yn . In other words, for each i number xi should be equal to yi .
输出格式
There are some tasks which have the following structure: you are given a model, and you can do some operations, you should use these operations to achive the goal. One way to create a new task is to use the same model and same operations, but change the goal.
Let's have a try. I have created the following task for Topcoder SRM 557 Div1-Hard: you are given n integers x1,x2,...,xn . You are allowed to perform the assignments (as many as you want) of the following form xi ^= xj (in the original task i and j must be different, but in this task we allow i to equal j ). The goal is to maximize the sum of all xi .
Now we just change the goal. You are also given n integers y1,y2,...,yn . You should make x1,x2,...,xn exactly equal to y1,y2,...,yn . In other words, for each i number xi should be equal to yi .
输入输出样例
输入#1
2 3 5 6 0
输出#1
2 1 2 2 2
输入#2
5 0 0 0 0 0 1 2 3 4 5
输出#2
-1
输入#3
3 4 5 6 1 2 3
输出#3
5 3 1 1 2 2 2 2 3 3 1
输入#4
3 1 2 3 4 5 6
输出#4
-1
说明/提示
Assignment a ^= b denotes assignment a = a ^ b , where operation "^" is bitwise XOR of two integers.