Codeforces Round #507 (Div. 2, based on Olympiad of Metropolises).A. Palindrome Dance(思维)

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/XxxxxM1/article/details/82466695

A. Palindrome Dance

time limit per test

1 second

memory limit per test

512 megabytes

input

standard input

output

standard output

A group of nn dancers rehearses a performance for the closing ceremony. The dancers are arranged in a row, they've studied their dancing moves and can't change positions. For some of them, a white dancing suit is already bought, for some of them — a black one, and for the rest the suit will be bought in the future.

On the day when the suits were to be bought, the director was told that the participants of the olympiad will be happy if the colors of the suits on the scene will form a palindrome. A palindrome is a sequence that is the same when read from left to right and when read from right to left. The director liked the idea, and she wants to buy suits so that the color of the leftmost dancer's suit is the same as the color of the rightmost dancer's suit, the 2nd left is the same as 2nd right, and so on.

The director knows how many burls it costs to buy a white suit, and how many burls to buy a black suit. You need to find out whether it is possible to buy suits to form a palindrome, and if it's possible, what's the minimal cost of doing so. Remember that dancers can not change positions, and due to bureaucratic reasons it is not allowed to buy new suits for the dancers who already have suits, even if it reduces the overall spending.

Input

The first line contains three integers nn, aa, and bb (1≤n≤201≤n≤20, 1≤a,b≤1001≤a,b≤100) — the number of dancers, the cost of a white suit, and the cost of a black suit.

The next line contains nn numbers cici, ii-th of which denotes the color of the suit of the ii-th dancer. Number 00 denotes the white color, 11 — the black color, and 22 denotes that a suit for this dancer is still to be bought.

Output

If it is not possible to form a palindrome without swapping dancers and buying new suits for those who have one, then output -1. Otherwise, output the minimal price to get the desired visual effect.

Examples

input

Copy

5 100 1
0 1 2 1 2

output

Copy

101

input

Copy

3 10 12
1 2 0

output

Copy

-1

input

Copy

3 12 1
0 1 0

output

Copy

0

Note

In the first sample, the cheapest way to obtain palindromic colors is to buy a black suit for the third from left dancer and a white suit for the rightmost dancer.

In the second sample, the leftmost dancer's suit already differs from the rightmost dancer's suit so there is no way to obtain the desired coloring.

In the third sample, all suits are already bought and their colors form a palindrome.

参考代码:

#include <bits/stdc++.h>
using namespace std;
int main()
{
	int n,a,b,temp;
	
	int cost=0;
	cin>>n>>a>>b;

	vector<int>s(n);
	for(int i=0;i<n;i++) cin>>s[i];
	int l=0;int r=n-1;

	while(l<=r)
	{
		if(l==r && s[l]==2) cost+=min(a,b);
		else if(s[l]+s[r]==4) cost+=2*min(a,b);
		else if(s[l]+s[r]==1) {cout<<-1<<endl;return 0;}
		else if(s[l]+s[r]==2 && s[l]!=s[r]) {cost+=a;}
		else if(s[l]+s[r]==3) cost+=b;
		l++;r--;

	}
	cout<<cost<<endl;
}

猜你喜欢

转载自blog.csdn.net/XxxxxM1/article/details/82466695