亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

求珠子的長度最小區間

發布時間: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

武川县| 凌云县| 宁蒗| 温泉县| 曲靖市| 德昌县| 栖霞市| 门头沟区| 阳春市| 淮滨县| 东丰县| 柳江县| 二连浩特市| 渭源县| 郯城县| 庆城县| 黔西| 瓦房店市| 广丰县| 湘潭市| 招远市| 濮阳县| 永丰县| 都兰县| 潼关县| 宾阳县| 年辖:市辖区| 乐业县| 铁岭市| 武清区| 大关县| 铜川市| 武宁县| 化隆| 平果县| 清镇市| 文成县| 鸡东县| 芒康县| 宝山区| 阳东县|