zoukankan      html  css  js  c++  java
  • Codeforces Round #283 (Div. 2) B. Secret Combination 暴力水题

    B. Secret Combination
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    You got a box with a combination lock. The lock has a display showing n digits. There are two buttons on the box, each button changes digits on the display. You have quickly discovered that the first button adds 1 to all the digits (all digits 9 become digits 0), and the second button shifts all the digits on the display one position to the right (the last digit becomes the first one). For example, if the display is currently showing number 579, then if we push the first button, the display will show 680, and if after that we push the second button, the display will show 068.

    You know that the lock will open if the display is showing the smallest possible number that can be obtained by pushing the buttons in some order. The leading zeros are ignored while comparing numbers. Now your task is to find the desired number.

    Input

    The first line contains a single integer n (1 ≤ n ≤ 1000) — the number of digits on the display.

    The second line contains n digits — the initial state of the display.

    Output

    Print a single line containing n digits — the desired state of the display containing the smallest possible number.

    Sample test(s)
    Input
    3
    579
    Output
    024
    Input
    4
    2014
    Output
    0142

    hou[i][j]表示当i为开头的时候,i后第j位的大小是多少
    然后暴力枚举比较就行 n^2
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    #define maxn 1001
    const int inf=0x7fffffff;   //无限大
    string s;
    int d[maxn];
    int hou[maxn][maxn];
    int main()
    {
        int n;
        while(cin>>n){
        cin>>s;
        for(int i=0;i<n;i++)
        {
            d[i]=s[i]-'0';
        }
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<n;j++)
            {
                //cout<<"1"<<endl;
                hou[i][j]=d[(i+j)%n]-d[i];
                if(hou[i][j]<0)
                    hou[i][j]+=10;
            }
        }
        int flag1[maxn];
        memset(flag1,0,sizeof(flag1));
        int num=n;
        int m=0;
        int flag=0;
        //cout<<"1"<<endl;
        while(m!=n-1)
        {
            int min_num=11;
            for(int i=0;i<n;i++)
            {
                if(flag1[i]==0&&hou[i][m]<min_num)
                {
                    flag=i;
                    min_num=hou[i][m];
                }
            }
            for(int i=0;i<n;i++)
            {
                if(hou[i][m]>min_num)
                {
                    flag1[i]=1;
                    num--;
                }
            }
            m++;
            if(num==1)
                break;
        }
        //cout<<flag<<endl;
        int dp=s[flag]-'0';
        dp=10-dp;
        int kiss;
        //cout<<dp<<endl;
        for(int i=0;i<n;i++)
        {
            kiss=s[(i+flag)%n]-'0';
            if(s[(i+flag)%n]==s[flag])
                cout<<(kiss+dp)%10;
            else
                cout<<(kiss+dp)%10;
        }
        cout<<endl;
        }
        return 0;
    }
  • 相关阅读:
    [原理][源代码解析]spring中@Transactional,Propagation.SUPPORTS,以及 Hibernate Session,以及jdbc Connection关系---转载
    凡事预则立,不预则废
    Linux下history命令详解---转载
    12 个最佳的免费网络监控工具--转载
    Linux curl命令参数详解--转载
    从源码角度深入分析ant
    SpringMVC关于json、xml自动转换的原理研究[附带源码分析 --转
    使用split进行分割时遇到特殊字符的问题
    ES查看segment大小
    Twitter的流处理器系统Heron——升级的storm,可以利用mesos来进行资源调度
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4172196.html
Copyright © 2011-2022 走看看