Codeforces Round \ # 656 (Div. 3) A, B, C, D, (기타 보충)
24969 단어 Codeforces
A. Three Pairwise Maximums
#include
#include
using namespace std;
int main()
{
int t,a[3];
scanf("%d",&t);
while(t--)
{
scanf("%d%d%d",&a[0],&a[1],&a[2]);
sort(a,a+3);
if(a[1]==a[2])
{
printf("YES
");
printf("%d %d %d
",a[0],a[0],a[2]);
}
else printf("NO
");
}
return 0;
}
B. Restore the Permutation by Merger
#include
#include
#include
using namespace std;
int t,n,x,a[110],b[55],cnt;
int main()
{
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
cnt=0;
memset(a,0,sizeof(a));
memset(b,0,sizeof(b));
for(int i=1;i<=2*n;i++)
{
scanf("%d",&x);
if(!b[x])
{
b[x]++;a[++cnt]=x;
}
}
for(int i=1;i<=cnt;i++)printf("%d ",a[i]);
printf("
");
}
return 0;
}
C. Make It Good
#include
#include
#include
using namespace std;
int const N=2e5+5;
int t,n,a[N];
int main()
{
scanf("%d",&t);
while(t--)
{
scanf("%d",&n);
for(int i=1;i<=n;i++)scanf("%d",&a[i]);
int i=0,j=0;
for(i=n-1;i>=1;i--)
if(a[i]<a[i+1])break;
for(j=i;j>=1;j--)
if(a[j]>a[j+1])break;
printf("%d
",j);
}
return 0;
}
D. a-Good String
#include
#include
#include
using namespace std;
int const N=2e5;
char s[N];
int t,n;
int dfs(int l,int r,char ch)
{
if(l==r)//n=1
{
if(ch==s[l])return 0;//
return 1; //
}
int cnt1=0,cnt2=0,x=(l+r)/2;
for(int i=l;i<=x;i++)
if(ch!=s[i])cnt1++;
for(int i=x+1;i<=r;i++)
if(ch!=s[i])cnt2++;
return min(dfs(l,x,ch+1)+cnt2,cnt1+dfs(x+1,r,ch+1));
// (ch+1)-good ch ch (ch+1)-good
}
int main()
{
scanf("%d
",&t);
while(t--)
{
scanf("%d
",&n);
scanf("%s",s+1);
printf("%d
",dfs(1,n,'a'));
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.