P1259 黑白棋子的移动

为数不多,靠打表过的

这题有个特殊点就是4,剩4个的时候有特殊移动,其他的就是找规律

// Problem: P1990 覆盖墙壁
// Contest: Luogu
// URL: https://www.luogu.com.cn/problem/P1990
// Memory Limit: 125 MB
// Time Limit: 1000 ms
// Date: 2024-03-25 17:56:53
// 
// Powered by CP Editor (https://cpeditor.org)

#include<bits/stdc++.h>
#define endl '\n'
#define int int64_t
#define ld long double
using namespace std;
int dx[] = { -1,0,1,0 };
int dy[] = { 0,1,0,-1 };
const int NC = 2e3 + 10;
char ches[NC][NC];
const int mod = 1e4;
const int N = 1e6 + 10;
int a[N], b[N], n, m;
int f[N], k[N];
string s;
void move() {
	int pos = s.find('-');
	if (pos == 8) {
		// cout << "oooo****--";
		// for (int i = pos / 2; i < n; ++i)
			// cout << "o*";
		// cout << endl;
		cout << "ooo--***";
		for (int i = pos / 2; i <= n; ++i)
			cout << "o*";
		cout << endl;
		cout << "ooo*o**--*";
		for (int i = pos / 2; i < n; ++i)
			cout << "o*";
		cout << endl;
		cout << "o--*o**o";
		for (int i = pos / 2; i <= n; ++i)
			cout << "o*";
		cout << endl;
		cout << "o*o*o*--";
		for (int i = pos / 2; i <= n; ++i)
			cout << "o*";
		cout << endl;
		cout << "--";
		for (int i = 1; i <= n; ++i)
			cout << "o*";
		cout << endl;
		return;
	}
	else {
		string t = "", ts = "";
		for (int i = 1; i <= pos / 2 - 1; ++i)
			t += 'o', ts += 'o';
		t += '-';
		t += '-';
		for (int i = 1; i <= pos / 2 - 1; ++i)
			t += '*', ts += '*';
		ts += '-';
		ts += '-';
		for (int i = pos / 2; i <= n; ++i)
			t += "o*", ts += "o*";
		cout << t << endl;
		cout << ts << endl;
		s = ts;

	}
	move();
}
void solve() {
	cin >> n;
	for (int i = 1; i <= n; ++i)
		s += 'o';
	for (int i = 1; i <= n; ++i)
		s += '*';
	s += '-'; s += '-';
	cout << s << endl;
	move();
}
signed main() {
	ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
	int t = 1;
	//cin >> t;
	while (t--) {
		solve();
	}
	return 0;
}

根据引用\[1\]和引用\[2\]的内容,题目1327是关于黑白棋子移动的问题。开始时,有一行黑白相间的棋子,其中有两个空位可以使用。每次移动时,必须同时移动相邻的两个棋子,可以是同色的也可以是不同色的,但不能调换两个棋子的左右位置。移动时必须跳过若干个棋子,不能平移。题目要求找出最少的移动步数,使得最后的棋子排列成黑白相间的一行棋子。 根据引用\[3\]的样例输出,当输入为7时,最少需要11步才能完成移动。每一步的移动过程都被详细列出。 所以,题目1327是关于黑白棋子移动的问题,要求找出最少的移动步数,使得最后的棋子排列成黑白相间的一行棋子。 #### 引用[.reference_title] - *1* [信息学奥赛一本通 1327:【例7.6】黑白棋子移动 | 洛谷 P1259 黑白棋子移动](https://blog.csdn.net/lq1990717/article/details/124412673)[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^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [1327:【例7.6】黑白棋子移动——分治](https://blog.csdn.net/weixin_51995229/article/details/127389034)[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^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [信息学奥赛一本通:1327:【例7.6】黑白棋子移动](https://blog.csdn.net/ffsdfg/article/details/130519111)[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^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值