D - Menagerie


Time limit : 2sec / Memory limit : 256MB

Score : 500 points

Problem Statement

Snuke, who loves animals, built a zoo.

There are N animals in this zoo. They are conveniently numbered 1 through N, and arranged in a circle. The animal numbered i(2≤iN−1) is adjacent to the animals numbered i−1 and i+1. Also, the animal numbered 1 is adjacent to the animals numbered 2 and N, and the animal numbered N is adjacent to the animals numbered N−1 and 1.

There are two kinds of animals in this zoo: honest sheep that only speak the truth, and lying wolves that only tell lies.

Snuke cannot tell the difference between these two species, and asked each animal the following question: "Are your neighbors of the same species?" The animal numbered i answered si. Here, if si is o, the animal said that the two neighboring animals are of the same species, and if si is x, the animal said that the two neighboring animals are of different species.

More formally, a sheep answered o if the two neighboring animals are both sheep or both wolves, and answered x otherwise. Similarly, a wolf answered x if the two neighboring animals are both sheep or both wolves, and answered o otherwise.

Snuke is wondering whether there is a valid assignment of species to the animals that is consistent with these responses. If there is such an assignment, show one such assignment. Otherwise, print -1.

Constraints

  • 3≤N≤105
  • s is a string of length N consisting of o and x.

Input

The input is given from Standard Input in the following format:

  1. N
  2. s

Output

If there does not exist an valid assignment that is consistent with s, print -1. Otherwise, print an string t in the following format. The output is considered correct if the assignment described by t is consistent with s.

  • t is a string of length N consisting of S and W.
  • If ti is S, it indicates that the animal numbered i is a sheep. If ti is W, it indicates that the animal numbered i is a wolf.

Sample Input 1

  1. 6
  2. ooxoox

Sample Output 1

  1. SSSWWS

For example, if the animals numbered 1, 2, 3, 4, 5 and 6 are respectively a sheep, sheep, sheep, wolf, wolf, and sheep, it is consistent with their responses. Besides, there is another valid assignment of species: a wolf, sheep, wolf, sheep, wolf and wolf.

Let us remind you: if the neiboring animals are of the same species, a sheep answers o and a wolf answers x. If the neiboring animals are of different species, a sheep answers x and a wolf answers o.


Sample Input 2

  1. 3
  2. oox

Sample Output 2

  1. -1

Print -1 if there is no valid assignment of species.


Sample Input 3

  1. 10
  2. oxooxoxoox

Sample Output 3

  1. SSWWSSSWWS

题目链接:http://arc069.contest.atcoder.jp/tasks/arc069_b

题意:n只动物从1到n围成一个圈,每只动物要么是羊要么是狼。每只动物会说出一个字母,说'o'表示它两边动物种类相同,说'x'表示不同。但羊是说真话,狼是说反话。求出这n只动物的种类。
分析:模拟一下就可以了,不过这个模拟比较大!
下面给出AC代码:
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int N=;
  4. int gh(char *str,char *ch,int n) {
  5. for(int i=; i<n; i++) {
  6. if(i<n-) {
  7. if(str[i]=='o') {
  8. if(ch[i]=='S') {
  9. ch[i+]=ch[i-];
  10. } else {
  11. if(ch[i-]=='S') ch[i+]='W';
  12. else ch[i+]='S';
  13. }
  14. } else {
  15. if(ch[i]=='S') {
  16. if(ch[i-]=='S') ch[i+]='W';
  17. else ch[i+]='S';
  18. } else {
  19. ch[i+]=ch[i-];
  20. }
  21. }
  22. }
  23. else if(i==n-) {
  24. if(str[i]=='o') {
  25. if(ch[i]=='S') {
  26. if(ch[i+]!=ch[i-]) {
  27. return ;
  28. }
  29. }
  30. else {
  31. if(ch[i+]==ch[i-]){
  32. return ;
  33. }
  34. }
  35. }
  36. else{
  37. if(ch[i]=='S'){
  38. if(ch[i+]==ch[i-]){
  39. return ;
  40. }
  41. }
  42. else{
  43. if(ch[i+]!=ch[i-]) {
  44. return ;
  45. }
  46. }
  47. }
  48. }
  49. else if(i==n-){
  50. if(str[i]=='x'){
  51. if(ch[i]=='S') {
  52. if(ch[n-]==ch[]) return ;
  53. }
  54. else{
  55. if(ch[n-]!=ch[]) return ;
  56. }
  57. }
  58. else{
  59. if(ch[i]=='S'){
  60. if(ch[n-]!=ch[]) return ;
  61. }
  62. else{
  63. if(ch[n-]==ch[]) return ;
  64. }
  65. }
  66. }
  67. }
  68. return ;
  69. }
  70. int main() {
  71. char str[N];
  72. char ch[N];
  73. int n;
  74. int flag=;
  75. scanf("%d",&n);
  76. scanf("%s",str);
  77. ch[]='S';
  78. if(str[]=='o') {
  79. memset(ch,,sizeof(ch));
  80. ch[]='S';
  81. ch[]='S';
  82. ch[n-]='S';
  83. flag=gh(str,ch,n);
  84. if(flag==) {
  85. for(int i=; i<n; i++) printf("%c",ch[i]);
  86. puts("");
  87. return ;
  88. } else {
  89. memset(ch,,sizeof(ch));
  90. ch[]='S';
  91. ch[]='W';
  92. ch[n-]='W';
  93. flag=gh(str,ch,n);
  94. if(flag==){
  95. for(int i=;i<n;i++) printf("%c",ch[i]);
  96. puts("");
  97. return ;
  98. }
  99. }
  100. }
  101. else{
  102. memset(ch,,sizeof(ch));
  103. ch[]='S';
  104. ch[]='S';
  105. ch[n-]='W';
  106. flag=gh(str,ch,n);
  107. if(flag==){
  108. for(int i=;i<n;i++) printf("%c",ch[i]);
  109. puts("");
  110. return ;
  111. }
  112. else{
  113. memset(ch,,sizeof(ch));
  114. ch[]='S';
  115. ch[]='W';
  116. ch[n-]='S';
  117. flag=gh(str,ch,n);
  118. if(flag==){
  119. for(int i=;i<n;i++) printf("%c",ch[i]);
  120. puts("");
  121. return ;
  122. }
  123. }
  124. }
  125. ch[]='W';
  126. if(str[]=='o'){
  127. memset(ch,,sizeof(ch));
  128. ch[]='W';
  129. ch[]='S';
  130. ch[n-]='W';
  131. flag=gh(str,ch,n);
  132. if(flag==){
  133. for(int i=;i<n;i++) printf("%c",ch[i]);
  134. puts("");
  135. return ;
  136. }
  137. else{
  138. ch[]='W';
  139. ch[]='W';
  140. ch[n-]='S';
  141. flag=gh(str,ch,n);
  142. if(flag==){
  143. for(int i=;i<n;i++) printf("%c",ch[i]);
  144. puts("");
  145. return ;
  146. }
  147. }
  148. }
  149. else{
  150. memset(ch,,sizeof(ch));
  151. ch[]='W';
  152. ch[]='S';
  153. ch[n-]='S';
  154. flag=gh(str,ch,n);
  155. if(flag==){
  156. for(int i=;i<n;i++) printf("%c",ch[i]);
  157. puts("");
  158. }
  159. else{
  160. ch[]='W';
  161. ch[]='W';
  162. ch[n-]='W';
  163. flag=gh(str,ch,n);
  164. if(flag==){
  165. for(int i=;i<n;i++) printf("%c",ch[i]);
  166. puts("");
  167. return ;
  168. }
  169. }
  170. }
  171. puts("-1");
  172. return ;
  173. }

AtCoder Regular Contest 069 D的更多相关文章

  1. AtCoder Regular Contest 069 F Flags 二分,2-sat,线段树优化建图

    AtCoder Regular Contest 069 F Flags 二分,2-sat,线段树优化建图 链接 AtCoder 大意 在数轴上放上n个点,点i可能的位置有\(x_i\)或者\(y_i\ ...

  2. AtCoder Regular Contest 069 D - Menagerie 枚举起点 模拟递推

    arc069.contest.atcoder.jp/tasks/arc069_b 题意:一堆不明身份的动物排成一圈,身份可能是羊或狼,羊一定说实话,狼一定说假话.大家各自报自己的两边是同类还是不同类, ...

  3. AtCoder Regular Contest 069 F - Flags

    题意: 有n个点需要摆在一个数轴上,每个点需要摆在ai这个位置或者bi上,问怎么摆能使数轴上相邻两个点之间的距离的最小值最大. 二分答案后显然是个2-sat判定问题,因为边很多而连边的又是一个区间,所 ...

  4. AtCoder Regular Contest 069

    1. C - Scc Puzzle 计算scc的个数,先判断s个数需要多少个cc,多的cc,每四个可以组成一个scc.注意数据范围,使用long long. #include<bits/stdc ...

  5. AtCoder Regular Contest 061

    AtCoder Regular Contest 061 C.Many Formulas 题意 给长度不超过\(10\)且由\(0\)到\(9\)数字组成的串S. 可以在两数字间放\(+\)号. 求所有 ...

  6. AtCoder Regular Contest 094 (ARC094) CDE题解

    原文链接http://www.cnblogs.com/zhouzhendong/p/8735114.html $AtCoder\ Regular\ Contest\ 094(ARC094)\ CDE$ ...

  7. AtCoder Regular Contest 092

    AtCoder Regular Contest 092 C - 2D Plane 2N Points 题意: 二维平面上给了\(2N\)个点,其中\(N\)个是\(A\)类点,\(N\)个是\(B\) ...

  8. AtCoder Regular Contest 093

    AtCoder Regular Contest 093 C - Traveling Plan 题意: 给定n个点,求出删去i号点时,按顺序从起点到一号点走到n号点最后回到起点所走的路程是多少. \(n ...

  9. AtCoder Regular Contest 094

    AtCoder Regular Contest 094 C - Same Integers 题意: 给定\(a,b,c\)三个数,可以进行两个操作:1.把一个数+2:2.把任意两个数+1.求最少需要几 ...

随机推荐

  1. iOS 蓝牙开发资料记录

    一.蓝牙基础认识:   1.iOS蓝牙开发:  iOS蓝牙开发:蓝牙连接和数据读写   iOS蓝牙后台运行  iOS关于app连接已配对设备的问题(ancs协议的锅)          iOS蓝牙空中 ...

  2. Hybris 项目工程配置

    1.控制台页面进入platform目录 cd F:\hybris640\hybris\bin\platform 并运行 setantenv.bat 生成对应的ant. 2.运行 ant moduleg ...

  3. xamarin android布局

    xamarin android布局练习(1) xamarin android布局练习,基础非常重要,首先要学习的就是android的布局练习,xamarin也一样,做了几个xamarin androi ...

  4. 英雄联盟LOL用什么语言写的?

    是用openGL开发的 开发语言是c/c++ 客户端是一个.net的web界面

  5. 活动倒计时-兼容ios

    最近要做一个活动,需要用倒计时,写好之后再IOS上无效,经过百度知道了,原来IOS不能识别格式"2017-11-09 --",所以要进行转换才有效 直接上代码了: <!DOC ...

  6. 点击按钮显示隐藏DIV,点击DIV外面隐藏DIV

    点击按钮显示隐藏DIV,点击DIV外面隐藏DIV 注意:此方法对touch事件不行,因为stopPropagation并不能阻止touchend的冒泡 <style type="tex ...

  7. 使用sed,grep 批量修改文件内容

    使用sed命令可以进行字符串的批量替换操作,以节省大量的时间及人力: 使用的格式如下: sed -i "s/oldstring/newstring/g" `grep oldstri ...

  8. 房上的猫:了解java与学习java前的准备

    一.java 概述:  1.通常指完成某些事情的一种既定方式和过程  2.程序可以看做对一系列动作执行过程的描述  3.计算机按照某种顺序完成一系列指令的集合称为程序  4.计算机仅识别二进制低级语言 ...

  9. View学习(四)-View的绘制(draw)过程

    View的draw过程相比之于measrue过程,也是比较简单的.并且在我们自定义View时,也经常需要重写onDraw方法,来绘制出我们要实现的效果. 如之前的文章所说,绘制的流程也是起始于View ...

  10. IndentationError: unexpected indent

    都知道python是对格式要求很严格的,写了一些python但是也没发现他严格在哪里,今天遇到了IndentationError: unexpected indent错误我才知道他是多么的严格.    ...