0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:05:24 +00:00

P1498 南蛮图腾

R44590884
This commit is contained in:
Baoshuo Ren 2021-01-03 20:43:26 +08:00 committed by Baoshuo Ren
parent 8859e00f07
commit c8cbda6669
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,29 @@
#include <bits/stdc++.h>
using namespace std;
int n, a[1030] = {1};
int main() {
cin >> n;
for (int i = 0; i < (1 << n); i++) {
for (int j = 1; j < (1 << n) - i; ++j) {
cout << " ";
}
for (int j = i; j >= 0; j--) {
a[j] ^= a[j - 1];
}
if (i & 1) {
for (int j = 0; j <= i; j += 2) {
cout << (a[j] ? "/__\\" : " ");
}
} else {
for (int j = 0; j <= i; j++) {
cout << (a[j] ? "/\\" : " ");
}
}
cout << endl;
}
return 0;
}