codeforces 258A Little Elephant and Bits

点击打开链接

A. Little Elephant and Bits
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The Little Elephant has an integer a, written in the binary notation. He wants to write this number on a piece of paper.

To make sure that the number a fits on the piece of paper, the Little Elephant ought to delete exactly one any digit from number a in the binary record. At that a new number appears. It consists of the remaining binary digits, written in the corresponding order (possible, with leading zeroes).

The Little Elephant wants the number he is going to write on the paper to be as large as possible. Help him find the maximum number that he can obtain after deleting exactly one binary digit and print it in the binary notation.

Input

The single line contains integer a, written in the binary notation without leading zeroes. This number contains more than 1 and at most 105digits.

Output

In the single line print the number that is written without leading zeroes in the binary notation — the answer to the problem.

Examples
input
Copy
101
output
Copy
11
input
Copy
110010
output
Copy
11010
Note

In the first sample the best strategy is to delete the second digit. That results in number 112 = 310.

In the second sample the best strategy is to delete the third or fourth digits — that results in number 110102 = 2610.


题意:给出一个2进制的数,要求去掉一位,求去掉后的数最大是什么。

思路:既然要去掉一位,应该是去掉左边的0,这样才能最大,有那么一点贪心和数学的思想,总的来说,比较水

#include<bits/stdc++.h>  
using namespace std;  
typedef long long ll;  
const int inf = 0x3f3f3f3f;  
int main()   
{  
    // freopen("shuju.txt","r",stdin);
    char a[100000+10];
    int pos=-1;
    cin>>a;
    int len=strlen(a);
    for(int i=0;i<len;i++)
    {
        if(a[i]=='0')
        {
            pos=i;
            break;
        }
    } 
    if(pos==-1)
    {
        for(int i=1;i<len;i++)
            printf("%c",a[i]);
        printf("\n");
    } 
    else
    {
        for(int i=0;i<len;i++)
        {
            if(i==pos)
                continue;
            else
                printf("%c",a[i]);
        }
        printf("\n");
    }
    return 0;  
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值