Codeforces Round #394 (Div. 2) C. Dasha and Password 贪心+预处理+枚举

C. Dasha and Password
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

After overcoming the stairs Dasha came to classes. She needed to write a password to begin her classes. The password is a string of length n which satisfies the following requirements:

  • There is at least one digit in the string,
  • There is at least one lowercase (small) letter of the Latin alphabet in the string,
  • There is at least one of three listed symbols in the string: '#', '*', '&'.

Considering that these are programming classes it is not easy to write the password.

For each character of the password we have a fixed string of length m, on each of these n strings there is a pointer on some character. The i-th character displayed on the screen is the pointed character in the i-th string. Initially, all pointers are on characters with indexes1 in the corresponding strings (all positions are numbered starting from one).

During one operation Dasha can move a pointer in one string one character to the left or to the right. Strings are cyclic, it means that when we move the pointer which is on the character with index 1 to the left, it moves to the character with the index m, and when we move it to the right from the position m it moves to the position 1.

You need to determine the minimum number of operations necessary to make the string displayed on the screen a valid password.

Input

The first line contains two integers nm (3 ≤ n ≤ 50, 1 ≤ m ≤ 50) — the length of the password and the length of strings which are assigned to password symbols.

Each of the next n lines contains the string which is assigned to the i-th symbol of the password string. Its length is m, it consists of digits, lowercase English letters, and characters '#', '*' or '&'.

You have such input data that you can always get a valid password.

Output

Print one integer — the minimum number of operations which is necessary to make the string, which is displayed on the screen, a valid password.

Examples
input
3 4
1**2
a3*0
c4**
output
1
input
5 5
#*&#*
*a1c&
&q2w*
#a3c#
*&#*&
output
3
Note

In the first test it is necessary to move the pointer of the third string to one left to get the optimal answer.

In the second test one of possible algorithms will be:

  • to move the pointer of the second symbol once to the right.
  • to move the pointer of the third symbol twice to the right.



Source

Codeforces Round #394 (Div. 2)


My Solution

题意:长度为n的密码必须包含至少一个字母一个数字一个非字母非数字的字符,给出n个长度为m的字符串,每个串取一个字符,要求移动最少的步数使所成的密码为合法的密码。


贪心+预处理+枚举

先贪心的预处理出每个字符串 v[i]的v[i].c表示移动到字母的最少步数,v[i].d表示移动到数字的最少步数,v[i].f表示移动到其它字符的最少步数。

先把.c.d.f都初始化为INF,然后扫一遍字符串,如果不存在相应的请求则值依然是INF。

因为n <= 50 所以显然是n^3的枚举,即枚举每一个.c.d.f要求它们来自不同的3个ijk。这样就不会漏掉什么情况了 Y ^_^ Y。

复杂度 O(n^3)


#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
using namespace std;
typedef long long LL;
const int maxn = 1e2 + 8;
const int INF = 1e9 + 8;

string s[maxn];
struct p{
    int d, c, f;
}v[maxn];

int main()
{
    #ifdef LOCAL
    freopen("c.txt", "r", stdin);
    //freopen("c.out", "w", stdout);
    int T = 4;
    while(T--){
    #endif // LOCAL
    ios::sync_with_stdio(false); cin.tie(0);

    int n, m, i, j, k, cnt;
    cin >> n >> m;
    for(i = 0; i < n; i++){
        cin >> s[i];
    }
    //memset(v, -1, sizeof v);
    for(i = 0; i < n; i++){
        v[i].c = v[i].d = v[i].f = INF;
        cnt = 0;
        for(j = 0; j < m; j++){
            if(isalpha(s[i][j])) v[i].c = min(v[i].c ,cnt);
            else if(isdigit(s[i][j])) v[i].d = min(v[i].d, cnt);
            else v[i].f = min(cnt, v[i].f);
            cnt++;
        }
        cnt = 1;
        for(j = m - 1; j >= 0; j--){
            if(isalpha(s[i][j])) v[i].c = min(v[i].c ,cnt);
            else if(isdigit(s[i][j])) v[i].d = min(v[i].d, cnt);
            else v[i].f = min(cnt, v[i].f);
            cnt++;
        }
    }
    int ans = INF;
    for(i = 0; i < n; i++){
        if(v[i].c == INF) continue;
        for(j = 0; j < n; j++){
            if(v[j].d == INF || i == j) continue;
            for(k = 0; k < n; k++){
                if(v[k].f == INF || i == k || j == k) continue;
                ans = min(ans, v[i].c + v[j].d + v[k].f);
            }
        }
    }

    cout << ans << endl;


    #ifdef LOCAL
    cout << endl;
    }
    #endif // LOCAL
    return 0;
}



  Thank you!

                                                                                                                                             ------from ProLights

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值