日度归档:3 4 月, 2021

CSP 201909-3 字符画

相对于其他CSP的第三题大模拟,已经比较好写了。。但是还是有坑点。。
一个是在读颜色的时候,理所当然的认为read一个int,之后判断小于<0xf,0xfff即可。后来才考虑到,#00000f这种的颜色就错了。[捂脸] 还有计算平均值的时候块大小循环的时候边界错了。。 大模拟坑最多了。。。烦。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <cstring>

using namespace std;

int m, n, p, q, u, v;
unsigned char arr[2000][2000][3];
unsigned char arrAvg[2000][2000][3];
char strs[1000];
char chColor[] = "\x1b[48;2;%d;%d;%dm";
char rstColor[] = "\x1b[0m";

int transNum1(char c) {
    if ('0' <= c && c <= '9')return c - '0';
    else if ('a' <= c && c <= 'f')return c - 'a' + 10;
    else if ('A' <= c && c <= 'F')return c - 'A' + 10;
    else return -1;
}
int transNum2(char c1, char c2) {
    return 16 * transNum1(c1) + transNum1(c2);
}
void input() {
    scanf("%d %d %d %d", &m, &n, &p, &q);
    u = m / p;
    v = n / q;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            scanf(" #");
            scanf("%s", strs);
            int len = strlen(strs);
            int result = 0;
            if (len == 1) {
                int low4 = transNum1(strs[0]);
                arr[i][j][0] = arr[i][j][1] = arr[i][j][2] = low4 * 0x11;
            }
            else if (len == 3) {
                int low4 = transNum1(strs[0]);
                int low8 = transNum1(strs[1]);
                int low12 = transNum1(strs[2]);
                arr[i][j][0] = low4 * 0x11;
                arr[i][j][1] = low8 * 0x11;
                arr[i][j][2] = low12 * 0x11;
            }
            else {
                arr[i][j][0] = transNum2(strs[0], strs[1]);
                arr[i][j][1] = transNum2(strs[2], strs[3]);
                arr[i][j][2] = transNum2(strs[4], strs[5]);
            }
        }
    }
}
inline void calculateAvgSub(int blockX, int blockY) {
    unsigned long long x = 0, y = 0, z = 0;
    for (int i = blockX * q; i < (blockX + 1) * q; i++) {
        for (int j = blockY * p; j < (blockY + 1) * p; j++) {
            x += arr[i][j][0];
            y += arr[i][j][1];
            z += arr[i][j][2];
        }
    }
    arrAvg[blockX][blockY][0] = x / q / p;
    arrAvg[blockX][blockY][1] = y / q / p;
    arrAvg[blockX][blockY][2] = z / q / p;
}
void calculateAvg() {
    for (int i = 0; i < v; i++) {
        for (int j = 0; j < u; j++) {
            calculateAvgSub(i, j);
        }
    }
}
inline void printChar(int ch) {
    printf("\\x%02X", ch);
}
inline void printStr(const char* s) {
    while (*s) {
        printChar(*s);
        s++;
    }
}
inline void setColor(unsigned char* color1, unsigned char* color2) {
    color1[0] = color2[0];
    color1[1] = color2[1];
    color1[2] = color2[2];
}
inline bool cmpColor(unsigned char* color1, unsigned char* color2) {
    return color1[0] == color2[0] && color1[1] == color2[1] && color1[2] == color2[2];
}
void output() {
    unsigned char blackColor[3] = { 0, 0, 0 };
    unsigned char color[3] = { 0, 0, 0 };
    for (int i = 0; i < v; i++) {
        for (int j = 0; j < u; j++) {
            unsigned char* curColor = arrAvg[i][j];
            if (!cmpColor(color, curColor)) {
                if (cmpColor(blackColor, curColor))
                    sprintf(strs, rstColor);
                else
                    sprintf(strs, chColor, curColor[0], curColor[1], curColor[2]);
                setColor(color, curColor);
                printStr(strs);
            }
            printChar(' ');
        }
        if (!cmpColor(color, blackColor)) {
            setColor(color, blackColor);
            printStr(rstColor);
        }
        printChar('\n');
    }
}
int main() {
    input();
    calculateAvg();
    output();
}

CSP 201909-2 小明种苹果(续)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <iostream>
#include <algorithm>

using namespace std;

int n, m;
int a[1005];
bool drop[1005];
inline int getMOD(int x) {
    return (x + n) % n;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> n;
    int sum = 0;
    int dropCnt = 0;
    for (int i = 0; i < n; i++) {
        cin >> m;
        int t;
        for (int j = 0; j < m; j++) {
            cin >> t;
            if (t > 0) {
                if (j != 0 && t < a[i])
                    drop[i] = true;
                a[i] = t;
            }
            else
                a[i] += t;
           
        }
        sum += a[i];
        if (drop[i])
            dropCnt++;
    }
    int group = 0;
    for (int i = 0; i < n; i++) {
        if (drop[getMOD(i - 1)] && drop[getMOD(i)] && drop[getMOD(i + 1)])
            group++;
    }
    cout << sum << " " << dropCnt << " " << group;
}

CSP 201909-1 小明种苹果

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <iostream>
#include <algorithm>

using namespace std;

int n, m;
int a[1005],b[1005];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> n >> m;
    int sum = 0;
    int clearMaxID = 0;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
        int t;
        for (int j = 0; j < m; j++) {
            cin >> t;
            b[i] += t;
        }
        sum += a[i] + b[i];
        if (b[i] < b[clearMaxID])
            clearMaxID = i;
    }
    cout << sum << " " << clearMaxID + 1 << " " << -b[clearMaxID];
}

CSP 201912-2 回收站选址

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#include <iostream>
#include <algorithm>

using namespace std;

struct coord {
    long long x, y;
    coord(){}
    coord(long long x, long long y) :x(x), y(y) {}
    bool operator == (const coord& coord2) const {
        return x == coord2.x && y == coord2.y;
    }
    bool operator < (const coord& coord2) const {
        if (x != coord2.x)return x < coord2.x;
        return y < coord2.y;
    }
}arr[10005];
int n;
int XArr[] = {0,0,1,-1,1,1,-1,-1};
int YArr[] = {1,-1,0,0,1,-1,1,-1};
int stat[5];

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> n;
    for (int i = 0; i < n; i++)
        cin >> arr[i].x >> arr[i].y;
    sort(arr, arr + n);
    for (int i = 0; i < n; i++) {
        int cnter = 0;
        for (int j = 0; j < 4; j++) {
            coord tmp(arr[i].x + XArr[j], arr[i].y + YArr[j]);
            if (*lower_bound(arr, arr + n, tmp) == tmp)
                cnter++;
        }
        if (cnter != 4)continue;
        cnter = 0;
        for (int j = 4; j < 8; j++) {
            coord tmp(arr[i].x + XArr[j], arr[i].y + YArr[j]);
            if (*lower_bound(arr, arr + n, tmp) == tmp)
                cnter++;
        }
        stat[cnter]++;
    }
    for (int i = 0; i < 5; i++) {
        cout << stat[i] << "\n";
    }
}