您的位置:首页 > 其它

CodeForces 496B Secret Combination

2015-08-30 20:18 513 查看
Secret Combination
Time Limit:2000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u
Submit Status Practice CodeForces 496B

Description

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 Input

Input
3
579


Output
024


Input
4
2014


Output
0142


#include <stdio.h>
#include <string.h>
int main()
{
int n;
int i,j,k;
char a[1005];
int b[1005];
while(scanf("%d",&n)!=EOF)
{
b[0]=0;
for(i=1;i<1000;i++)
b[i]=9;
scanf("%s",a);
for(i=0;i<n;i++)
{
int x='9'-a[i]+1;
for(j=1;j<n;j++)
{
int y=(a[(i+j)%n]-'0'+x)%10;
if(y<b[j])
{
for(k=1;k<n;k++)
{
b[k]=(a[(i+k)%n]-'0'+x)%10;
}
break;
}
else if(y>b[j])
{
break;
}
}
}
for(i=0;i<n;i++)
printf("%d",b[i]);
printf("\n");
}
return 0;
}


View Code
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: