Codeforces Round #345 (Div. 2) B. Beautiful Paintings
4953 단어 codeforces
We are allowed to arranged pictures in any order. What is the maximum possible number of times the visitor may become happy while passing all pictures from first to last? In other words, we are allowed to rearrange elements of a in any order. What is the maximum possible number of indices i (1 ≤ i ≤ n - 1), such that ai + 1 > ai.
Input The first line of the input contains integer n (1 ≤ n ≤ 1000) — the number of painting.
The second line contains the sequence a1, a2, …, an (1 ≤ ai ≤ 1000), where ai means the beauty of the i-th painting.
Output Print one integer — the maximum possible number of neighbouring pairs, such that ai + 1 > ai, after the optimal rearrangement.
Examples input 5 20 30 10 50 40 output 4 input 4 200 100 100 200 output 2 Note In the first sample, the optimal order is: 10, 20, 30, 40, 50.
In the second sample, the optimal order is: 100, 200, 100, 200.
이 문제의 뜻은 해석을 많이 하지 않겠다. 내가 이 문제에 대한 이해를 말해 보아라. 이 문제는 간단한 욕심 문제다.하지만 아마도 내 방법은 네가 본 것 중에서 가장 특이한 것일 것이다. 내 방법은 기초적인 통 정렬을 사용했고 특판까지 더하면 끝이다. 그렇지 않으면 이 문제는 wrong answer를 기다리고 있을 것이다...사실 더 윽박지르는 방법이 하나 있다.
#include<cstdio>
#include<cstring>
int a[1005];
int main()
{
int n;
while(~scanf("%d",&n))
{
memset(a,0,sizeof(a));// ,
int num,flag=0;//flag
for(int i=0;i<n;i++)
{
scanf("%d",&num);
a[num]++;//
if(num>flag)
{
flag=num;
}
}
int sum,sum1=0;
for(int i=0;i<=1000;i++)//
{
sum=0;
for(int j=0;j<=flag;j++)
{
if(a[j]>0)
{
a[j]--;
sum++;
}
}
if(sum!=0)// ,, n n-1
sum1+=(sum-1);
else// ,,
{
break;
}
}
printf("%d
",sum1);
}
return 0;
}
다음은 비교적 까다로운 방법이다
#include<cstdio>
int a[1001],b,n,i,max;
int main(){
scanf("%d",&n);
for(i=1;i<=n;i++){
scanf("%d",&b);
a[b]++;
if(a[b]>max)max=a[b];
}
printf("%d",n-max);
return 0;
}
만약 블로그를 보고 얻은 것이 있다면, 나의 블로그 주소를 수집하는 것을 잊지 마세요...
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.