文章

16

粉丝

66

获赞

4

访问

9.1k

头像
整数去重 题解:
P2021
发布于2024年3月25日 21:41
阅读数 443

欢迎访问我的博客,里面有对本题解的更精细排版,还有刷过一些UJN的机试题目并给出了详细的分析和解题步骤描述。

博客链接

买了大会员,感觉很亏,如果有想要共享的,请在我的CSDN私信我,我可以共享这个账号(2025年3月25日过期)。

 

## 代码——列表避免暴力(空间换时间)

```c
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>

int num[20001];


int main() {
    int n;

    while (scanf("%d", &n) != EOF) {
        int real_n = 0;
        bool sheet[100] = {false};
        for (int i = 0; i < n; i++) {
            int temp;
            scanf("%d", &temp);
            if (sheet[temp] == false) {
                num[real_n++] = temp;
             &nbs...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发