P1203 [USACO1.1] 坏掉的项链 Broken Necklace

P1203 [USACO1.1] 坏掉的项链 Broken Necklace

想了好一会 想到了循环队列啥的 感觉不怎么合适 在题解区看到的一个方法豁然醒悟233~~~

借鉴一下某大佬的思路方法

#include<bits/stdc++.h>
using namespace std;
string s;
int compare(int x){
	int num=0;
	char ch1=s[x];//确定断裂处的第一个珠子(头)
	char ch2=s[x+1];//断裂处的第一个珠子(尾)
	for(int i=x;;i--){//尾 往前扫 小于了n前面还有串的(3个串相加的作用)
		if(s[i]=='w')
		num++;
		else if(ch1==s[i])
		num++;
		else 
		break;
	}
	for(int i=x+1;;i++){//头 往后加 越过了n后面还有串
		if(s[i]=='w')
		num++;
		else if(ch2==s[i])
		num++;
		else 
		break;
	}
	return num;
}
int main() {
	int n,cnt=-1;
	cin>>n;
	cin>>s;
	s=s+s+s;//三个s串相加用来充当一个大的循环项链 相当于圈
	for(int i=n;i<2*n;i++){
		if(s[i]=='w'){
			s[i]='b';
			cnt=max(cnt,compare(i));//w换成b带入计连续算数量
			s[i]='r';
			cnt=max(cnt,compare(i));//w换成r
			s[i]='w';//换回来
		}else
		    cnt=max(cnt,compare(i));
	}
	cnt=min(cnt,n);//防止cnt大于题目项链长度 因为在上面函数里面由于for循环没有限制 会出现比较相同字符的数量超出了题目给的项链长度 这是它的最大长度必定是项链长度 例如这一组数据
//输入:8      rrwwwwbb   输出:8

	if(cnt==-1)
	cnt=n;
	cout<<cnt;
}

记录一下 日后回看

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
回答: 题目P1518 \[USACO2.4\] 两只塔姆沃斯牛是一道模拟题,题目要求判断Farmer John和两头牛是否会相遇。解题思路可以分为两种方法。一种方法是记录二者的状态,如果出现了与前面相同的状态则说明陷入了死循环。具体实现步骤可以使用数组来记录Farmer John和两头牛的坐标、方向等状态信息,然后判断是否出现了重复的状态。另一种方法是利用博弈的思想,如果二者会同时回到一种状态,那么说明他们不会再相遇了,因为这时候他们已经陷入了一种对称性的状态。通过判断是否存在一种线性关系,可以确定二者是否会相遇。\[1\]\[2\]\[3\] #### 引用[.reference_title] - *1* [P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two](https://blog.csdn.net/TD123456q/article/details/125688037)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [洛谷P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two 题解 (C/C++)](https://blog.csdn.net/Jason__Jie/article/details/115027619)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [(移动方向状态标志)P1518 [USACO2.4]两只塔姆沃斯牛 The Tamworth Two题解](https://blog.csdn.net/m0_57221330/article/details/119980758)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值