[Codeforces] Round #284 (Div. 2) A 、 B 、 C

496A. Minimum Difficulty

题意:给定n个数,每次可以拿掉除两端两个数外的任意一个数。设剩余相邻数字差的最大值为Max,求Max的最小值。

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <algorithm>
#include <iostream>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <assert.h>
#include <time.h>
//#define _Test
typedef long long LL;
const int INF = 500000001;
const double EPS = 1e-9;
const double PI = acos(-1.0);
using namespace std;
int main()
{
    #ifdef _Test
        freopen("test0.in", "r", stdin);
        freopen("test0.out", "w", stdout);
        srand(time(NULL));
    #endif
    int n, a[105], ans;
    while(~scanf("%d", &n))
    {
        for(int i = 0; i < n; ++i)
        {
            scanf("%d", &a[i]);
        }
        ans = 1e9;
        for(int i = 1; i < n-1; ++i)
        {
            int temp = -1;
            for(int j = 1; j < n; j++)
            {
                if(j == i)
                {
                    continue;
                }
                else if(j != i+1)
                {
                    temp = max(a[j]-a[j-1], temp);
                }
                else
                {
                    temp = max(a[j]-a[j-2], temp);
                }
            }
            ans = min(ans, temp);
        }
        printf("%d\n", ans);
    }
    return 0;
}

496B. Secret Combination

题意:输入一个数字n,接着输入长度为n的字符串。现对这个字符串有两种操作:1.把这个字符串的最后一位挪到字符串的最前面 2.把这个字符串的每一位都加1。9+1=0.

求字典序最小的字符串。

比赛的时候,记录字符串的len变量写成char类型了,FST了。。

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <algorithm>
#include <iostream>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <assert.h>
#include <time.h>
//#define _Test
typedef long long LL;
const int INF = 500000001;
const double EPS = 1e-9;
const double PI = acos(-1.0);
using namespace std;
int main()
{
    #ifdef _Test
        freopen("test0.in", "r", stdin);
        freopen("test0.out", "w", stdout);
        srand(time(NULL));
    #endif
    char ch[1005], ch2[1005];
    int n, len;
    while(~scanf("%d", &n))
    {
        set<string> ss;
        scanf("%s", ch);
        len = strlen(ch);
        for(int k = 0; k <= 9; k++)
        {
            for(int i = 0; i < len; ++i)
            {
                for(int j = 0; j < len; ++j)
                {
                    ch2[(j+i)%len] = (ch[j]-'0'+k)%10+'0';
                }
                ch2[len] = '\0';
                ss.insert(ch2);
            }
        }  
        set<string>::iterator it = ss.begin();
        printf("%s\n", (*it).c_str());
    }
    return 0;
}

496C. Removing Columns

题意:给定n行m列的字符,每次可以删掉某一列的字符。求每行字符串从上至下是字典序至少需要删除几列字符。

根据字典序的规则,删除的规则一定是从左往右删,删的原则是前N列不是字典序的时候,把第N列删掉即可,直接按列递推字典序即可。

提供一组测试数据:

4 6
addddd
bccccc
bbaaca
caaaab

Answer:4

#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <algorithm>
#include <iostream>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <assert.h>
#include <time.h>
#define _Test
typedef long long LL;
const int INF = 500000001;
const double EPS = 1e-9;
const double PI = acos(-1.0);
using namespace std;
int main()
{
    #ifdef _Test
        //freopen("test0.in", "r", stdin);
        //freopen("test0.out", "w", stdout);
        srand(time(NULL));
    #endif
    char ch[101][105];
    int n, m;
    int bl[105][105];
    while(~scanf("%d %d", &n, &m))
    {
        for(int i = 0; i < n; i++)
        {
            scanf("%s", ch[i]);
        }
        int ans = 0;
        for(int j = 0; j < m; j++)
        {
            int flag = 1;
            bl[0][j] = 1;
            for(int i = 1; i < n; i++)
            {
                if(ch[i][j] < ch[i-1][j] && (j == 0 || bl[i][j-1] <= 1))
                {
                    flag = 0;
                    break;
                }
                else if(ch[i][j] == ch[i-1][j] && (j == 0 || bl[i][j-1] == 1))
                {
                    bl[i][j] = 1;
                }
                else if(j == 0 || bl[i][j-1] >= 1)
                {
                    bl[i][j] = 2;
                } 
                else
                {
                    bl[i][j] = 0;
                }
            }
            if(!flag)
            {
                ++ans; 
                for(int i = 0; i < n; i++)
                {
                    ch[i][j] = ch[0][j];
                    if(j == 0)
                        bl[i][j] = 1;
                    else
                        bl[i][j] = bl[i][j-1];
                }
            }
        }
       printf("%d\n", ans);
    }
    return 0;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值