中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

求珠子的長度最小區間

發布時間:2020-06-27 05:54:47 來源:網絡 閱讀:561 作者:小止1995 欄目:編程語言

有一串首尾相連的珠子,共有m個,每一個珠子有一種顏色,并且顏色的總數不超過n(n<=10),求連續的珠子的顏色總數為n時,長度最小的區間。

#include <iostream>
using namespace std;
#define MAXN 10
int colors[MAXN];//record the counter of one color
int colorsCounter;
void find(int arr[],int len, int colorsNeed)
{
    int bestStartIndex = 0;
    int bestLen = len;
    int lastStartIndex = 0;
    
    for ( int i=0; i<len; ++i) {
        if (!colors[arr[i]])
            colorsCounter++;
        colors[arr[i]]++;
        if (colorsCounter==colorsNeed) {
            int j = lastStartIndex;
            while (colors[arr[j]]>1) {
                colors[arr[j]]--;
                ++j;
            }
            if (i-j+1<bestLen) {
                bestStartIndex = j;
                bestLen = i-j+1;
                if (bestLen==colorsNeed)
                    break;
            }
            lastStartIndex = j;
        }
    }
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平谷区| 马关县| 霞浦县| 阿坝| 措勤县| 石阡县| 监利县| 封丘县| 中超| 南充市| 湖北省| 寻甸| 万年县| 浪卡子县| 竹溪县| 普安县| 贡山| 晋州市| 临安市| 临朐县| 花莲县| 安泽县| 商都县| 准格尔旗| 鄂伦春自治旗| 通城县| 弋阳县| 绍兴县| 蛟河市| 阿城市| 抚顺县| 平塘县| 始兴县| 德钦县| 涟水县| 西乌珠穆沁旗| 太和县| 清苑县| 湖南省| 广丰县| 睢宁县|