UVa #11572 Unique Snowflakes (例题8-7)

86 篇文章 0 订阅

给出一个序列,要求找出一个最长的连续子序列,使得这个子序列中没有重复的元素。


连续、子序列、不重复,这些关键词都指向滑动窗口


用STL的set和map都会比较慢,我觉得自己写hash会快一些。以后有机会再回来写hash版的吧



Run Time: 1.032s

#define UVa  "LT8-7.11572.cpp"

#include<cstdio>
#include<vector>
#include<cstring>
#include<algorithm>
#include<map>
using namespace std;


int main() {
    int T, n;
    scanf("%d", &T);
    for(int kase = 1; kase <= T; kase ++) {
        vector<long long> snowflakes;
        scanf("%d", &n);
        long long tmp;
        for(int i = 0; i < n; i ++) {
            scanf("%lld", &tmp);
            snowflakes.push_back(tmp);
        }
        map<long long, int> uniq;
        int l = 0, r = 0;
        int maxsize = 1;
        while(r < n) {
            int u = snowflakes[r];
            if(uniq.count(u) && uniq[u] >= l && uniq[u] < r) {        //repeated in current range.
                l = uniq[u] + 1;
            }
            uniq[u] = r;
            maxsize = max(maxsize, r - l + 1);
            r++;
        }
        printf("%d\n", maxsize);
    }
    return 0;
}


实现雪花飘落特效可以使用opencv-python库。下面是一个简单的实现方法: 1. 导入所需的库: ```python import cv2 import numpy as np ``` 2. 创建一个空白图像作为背景: ```python width, height = 800, 600 # 设置背景尺寸 background = np.zeros((height, width, 3), dtype=np.uint8) # 创建一个黑色背景图像 ``` 3. 创建一组雪花图像: ```python num_snowflakes = 100 # 雪花数量 snowflakes = [] for _ in range(num_snowflakes): center = (np.random.randint(0, width), np.random.randint(0, height)) # 随机设置雪花中心点 radius = np.random.randint(3, 8) # 随机设置雪花半径 snowflake = cv2.circle(np.zeros_like(background), center, radius, (255, 255, 255), -1) # 创建雪花图像 snowflakes.append(snowflake) ``` 4. 开始雪花飘落效果循环: ```python while True: for snowflake in snowflakes: # 随机设置雪花的飘落速度和方向 x_speed = np.random.randint(-5, 5) y_speed = np.random.randint(1, 5) # 更新雪花的位置 x, y = np.where(snowflake[:, :, 0] == 255) # 获得雪花的位置 snowflake[y, x] = [0, 0, 0] # 清空之前的位置 snowflake[y + y_speed, x + x_speed] = [255, 255, 255] # 更新位置 # 将雪花放置在背景上 background = cv2.bitwise_or(background, snowflake) # 显示背景图像 cv2.imshow("Snowfall Effect", background) if cv2.waitKey(30) == ord('q'): break cv2.destroyAllWindows() ``` 通过以上代码,我们可以实现一个简单的雪花飘落特效。需要注意的是,以上代码只是一种简单实现方法,你可以根据自己的需求进行修改和优化。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值