比赛 20120705 评测结果 AAAEEEEEEE
题目名称 绘画 最终得分 30
用户昵称 王者自由 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2012-07-05 09:43:35
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <vector>
#include <algorithm>
using namespace std;
const int N = 101;
int G[N][N], d[N][N][N];
int n, k, m, t;
char s[N];
int main() {
    freopen("drawing.in", "r", stdin);
    freopen("drawing.out", "w", stdout);
    scanf("%d %d %d\n", &n, &k, &m);
    int c, x1, y1, x2, y2, l, h;
    for(int i=0; i<n; i++)
        for(int j=0; j<n; j++)
            G[i][j] = 1;
    while(m--) {
        fgets(s, N, stdin);
        if(s[0] == 'P') {
            sscanf(s, "PAINT %d %d %d %d %d", &c, &x1, &y1, &x2, &y2);
            h = y2 - y1, l = x2 - x1;
            for(int i=0; i<=h; i++)
                for(int j=(i%2); j<=l; j+=2) 
                    G[i+y1][j+x1] = c;
        } else if(s[0] == 'S') {
            t++;
            for(int i=0; i<n; i++)
                for(int j=0; j<n; j++)
                    d[t][i][j] = G[i][j];
        } else if(s[0] == 'L') {
            sscanf(s, "LOAD %d", &c);
            for(int i=0; i<n; i++)
                for(int j=0; j<n; j++)
                    G[i][j] = d[c][i][j];
        }
    }
    for(int i=0; i<n; i++) {
        for(int j=0; j<n; j++)
            printf("%d ", G[j][i]);
        printf("\n");
    }
    return 0;
}