蓝桥杯刷题--python-12
后台-插件-广告管理-内容页头部广告(手机) |
3768. 字符串删减 - AcWing题库
n=int(input())
s=input()
res=0
i=0
while(iif s[i]=='x':
j=i+1
while(jj+=1
res+=max(j-i-2,0)
i=j
else:
i+=1
print(res)
3777. 砖块 - AcWing题库
# https://www.acwing.com/activity/content/code/content/5532758/
T=int(input())
def update(a,i):
if a[i]=='W':
a[i]='B'
else:
a[i]='W'
def check_(c):
res=[]
s_=s[:]for i in range (n-1):
if s_[i]!=c:
update(s_,i)
update(s_,i+1)
res.append(i)
if s_[-1]!=c: return False
print(len(res))for i in res:
print(i + 1, end=' ')
if len(res):
print()
return True
while(T):
n=int(input())
s=list(input())
if not check_('B') and not check_('W'):
print(-1)
T-=1
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。
在线投稿:投稿 站长QQ:1888636
后台-插件-广告管理-内容页尾部广告(手机) |