Codeforces Round #369 (Div. 2)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #369 (Div. 2)相关的知识,希望对你有一定的参考价值。

A

#include <iostream>
#include <vector>
#include <queue>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <algorithm>
#include <map>
#include <set>
#include <cmath>
using namespace std;
typedef unsigned long long ull;
char a[1050][5];
int main()
{
 //freopen("input.txt","r",stdin);
 //freopen("output.txt","w",stdout);
  int x;
  cin >> x;
  char c;
  int pop=0;
  for(int i=0;i<x;i++)
  {
    for(int j=0;j<5;j++)
    {
     scanf("%c",&c);
     if(c>=65)
     {
      a[i][j]=c;
     }
     else
     j--;
    }
  }
  /*for(int i=0;i<x;i++)
  {
    for(int j=0;j<5;j++)
    {
     cout << a[i][j];
    }
  }*/
  for(int i=0;i<x;i++)
  {
    if(a[i][0]==‘O‘&&a[i][1]==‘O‘)
    {
     pop=1;
     a[i][0]=a[i][1]=‘+‘;
     break;
    }
    if(a[i][3]==‘O‘&&a[i][4]==‘O‘)
    {
     pop=1;
     a[i][3]=a[i][4]=‘+‘;
     break;
    }
  }
  if(pop==0)
  printf("NO");
  else
  {
      printf("YES");
    for(int i=0;i<x;i++)
  {
    printf("\n");
    for(int j=0;j<5;j++)
    {
     printf("%c",a[i][j]);
    }
  }
  }
 //fclose(stdin);
 //fclose(stdout);
}

  

以上是关于Codeforces Round #369 (Div. 2)的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #369 (Div. 2)

Codeforces Round #369 (Div. 2) ABCD

Codeforces Round #369 (Div. 2)

Codeforces Round #369 (Div. 2)

Codeforces Round #369(div 2)

Codeforces Round #369 (Div. 2) C. Coloring Trees DP