Problem——C. Prefix Sum Primes——Codeforces
12007 단어 Codeforces
However, there is one condition you must fulfill in order to receive the prize. You will need to put all the tiles from the bag in a sequence, in any order you wish. We will then compute the sums of all prefixes in the sequence, and then count how many of these sums are prime numbers. If you want to keep the prize, you will need to maximize the number of primes you get.
Can you win the prize? Hurry up, the bags are waiting!
Input
The first line of the input contains a single integer n (1≤n≤200000) — the number of number tiles in the bag. The following line contains n space-separated integers a1,a2,…,an (ai∈{1,2}) — the values written on the tiles.
Output
Output a permutation b1,b2,…,bn of the input sequence (a1,a2,…,an) maximizing the number of the prefix sums being prime numbers. If there are multiple optimal permutations, output any.
Examples
input
5
1 2 1 2 1
output
1 1 1 2 2
input
9
1 1 2 1 1 1 2 1 1
output
1 1 1 2 1 1 1 2 1
Note
The first solution produces the prefix sums 1,2,3,5,7 (four primes constructed), while the prefix sums in the second solution are 1,2,3,5,6,7,8,10,11 (five primes). Primes are marked bold and blue. In each of these cases, the number of produced primes is maximum possible.
아이디어:
2가 먼저 2를 출력하고 2가 없으면 1부터 추가한다. 폭력 해결은 소수만 있으면 1이나 2를 출력한다. 추가하면서 출력하는 것이 아니다.
코드:
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long
#define dd double
#define mes(x,y) memset(x,y,sizeof(y))
using namespace std;
int k(int x){
int flag=1;
for(int i=2;i<=sqrt(x);i++){
if(x%i==0){
flag=0;
}
}
return flag;
}
int main(){
int n;
cin>>n;
int a=0,b=0,x;
for(int i=0;i<n;i++){
cin>>x;
if(x==2){
a++;
}
if(x==1){
b++;
}
}
n+=a;
int sum=0;// 2 2, 2 1
while(sum!=n){
if(k(sum+2)==1&&a!=0){
cout<<"2 ";sum+=2;a--;
}
else if(k(sum+1)==1&&b!=0){
cout<<"1 ";sum++;b--;
}
else{
if(a!=0){
sum+=2;a--;
cout<<"2 ";
}
else if(b!=0){
sum++;b--;
cout<<"1 ";
}
}
}// , 1 2, 。
cout<<endl;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces 1287C Garland제목 링크:Codeforces 1287C Garland 사고방식: 우리기dp[i][j][0]와 dp[i][j][1]는 각각 i개가 홀수/짝수이고 앞의 i개 안에 j개의 짝수가 있는 상황에서 i개의 최소 복잡도.첫 번...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.