习题8-5 折纸痕(Paper Folding, UVa177)

思路:
典型的递归分形问题。第一步要找规律,开始时,我从旋转的角度思考,无法求解。
之后发现以方向标画图: r -> ru -> rulu...发现每次增加的部分为原有部分逆序逆时针转90°。
#include <set>
#include <map>
#include <ctime>
#include <cmath>
#include <stack>
#include <queue>
#include <deque>
#include <cstdio>
#include <string>
#include <vector>
#include <cctype>
#include <sstream>
#include <utility>
#include <cstring>
#include <cstdlib>
#include <functional>
#include <iostream>
#include <algorithm>
#define SF(a) scanf("%d", &a)
#define PF(a) printf("%d\n", a)  
#define SFF(a, b) scanf("%d%d", &a, &b)  
#define SFFF(a, b, c) scanf("%d%d%d", &a, &b, &c)
#define SFFFF(a, b, c, d) scanf("%d%d%d%d", &a, &b, &c, &d)
#define CLEAR(a, b) memset(a, b, sizeof(a))
#define IN() freopen("in.txt", "r", stdin)
#define OUT() freopen("out.txt", "w", stdout)
#define FOR(i, a, b) for(int i = a; i < b; ++i)
#define ALL(a) (a).begin(), (a).end()
#define SZ(a) (int)(a).size()
#define PB push_back
#define LL long long
#define mod 10007
#define inf 107
#define eps 1e-12
using namespace std;
int buf[20];
int read() {
	int x = 0; char ch = getchar(); bool f = 0;
	while (ch < '0' || ch > '9') { if (ch == '-') f = 1; ch = getchar(); }
	while (ch >= '0' && ch <= '9') x = (x << 1) + (x << 3) + (ch ^ 48), ch = getchar();
	return f ? -x : x;
}
void write(int x) {
	if (!x) { putchar(48); return; }
	int l = 0; if (x < 0) putchar('-'), x = -x;
	while (x) buf[++l] = x % 10, x = x / 10;
	while (l) putchar(buf[l--] + 48);
}
//-------------------------chc------------------------------//
//e = 0, n = 1, w = 2, s = 3;

struct Node {
	int x, y;
	int dir;
	Node(int x = 0, int y = 0, int dir = 0) : x(x), y(y), dir(dir) { }
	bool operator<(const Node &rhs) const {
		return x < rhs.x || (x == rhs.x && y < rhs.y);
	}
};
vector<Node> v;
int n;

bool cmp(Node &a, Node &b) { return a.y < b.y; }

int dx(int d1, int d2) {
	if (d1 == 1) return -1;
	else if (d2 == 3) return 1;
	else return 0;
}

int dy(int d1, int d2) {
	if (d1 == 0 || d2 == 0) return 1;
	else return -1;
}

Node NextNode(int dir, Node u) {
	int ndir = (dir+1) % 4;
	int nx = u.x + dx(u.dir, ndir), ny = u.y + dy(u.dir, ndir);
	return Node(nx, ny, ndir);
}

void solve(int d) {
	if (d >= n) return;
	Node preu = v.back();
	for (int i = SZ(v) - 1; i >= 0; --i) {
		int predir = v[i].dir;
		Node cur = NextNode(predir, preu);
		preu = cur;
		v.push_back(cur);
	}
	solve(d + 1);
}

void print() {
	sort(v.begin(), v.end(), cmp);
	int stdy = v.front().y;
	sort(v.begin(), v.end());
	FOR(i, 0, SZ(v)) {
		v[i].y -= stdy;
	}
	FOR(i, 0, SZ(v)) {
		if (i == 0 || v[i].x != v[i -1].x) {
			if(i) putchar('\n');
			FOR(j, 0, v[i].y) putchar(' ');
			putchar(v[i].dir & 1 ? '|' : '_');
		}
		else {
			FOR(j, 0, v[i].y - v[i - 1].y - 1) putchar(' ');
			putchar(v[i].dir & 1 ? '|' : '_');
		}
	}
	cout << endl;
}

int main() {
	while (~SF(n) && n) {
		v.clear();
		v.push_back(Node(0, 0, 0));
		solve(0);
		print();
		puts("^");
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值