码迷,mamicode.com
首页 > 其他好文 > 详细

重置数列

时间:2021-06-13 10:47:34      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:https   continue   ++   using   const   lse   --   href   ace   

重置数列

AcWing 3661
https://www.acwing.com/problem/content/3664/
纯暴力1-100

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

const int N = 100005;

int a[N],s[105];
int T;
int n,k;

int main()
{
    cin >> T;
    while (T--)
    {
        cin >> n >> k;
        for (int i = 1; i <= n; i ++ ) scanf("%d", &a[i]);
        
        int res = (n + k - 1) / k;
        
        for (int c = 1; c <= 100; c ++ )
        {
            int t =  0;
            for (int i = 1; i <= n; i ++ )
            {
                if (c != a[i])
                {
                    i += k - 1;
                    t++;
                }
                
                else continue;
            }
            
            if (t < res) res = t;
        }
        
        cout << res << endl;
    }
    
    return 0;
}

重置数列

标签:https   continue   ++   using   const   lse   --   href   ace   

原文地址:https://www.cnblogs.com/lijiaji/p/14879107.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!