题目描述:

time limit per test

2 seconds

memory limit per test

512 megabytes

input

standard input

output

standard output

Dima worked all day and wrote down on a long paper strip his favorite number n

consisting of l digits. Unfortunately, the strip turned out to be so long that it didn't fit in the Dima's bookshelf. To solve the issue, Dima decided to split the strip into two non-empty parts so that each of them contains a positive integer without leading zeros. After that he will compute the sum of the two integers and write it down on a new strip. Dima wants the resulting integer to be as small as possible, because it increases the chances that the sum will fit it in the bookshelf. Help Dima decide what is the minimum sum he can obtain.

Input

The first line contains a single integer l(2≤l≤100000) — the length of the Dima's favorite number.

The second line contains the positive integer n initially written on the strip: the Dima's favorite number.

The integer n consists of exactly l digits and it does not contain leading zeros. Dima guarantees, that there is at least one valid way to split the strip.

Output

Print a single integer — the smallest number Dima can obtain.

Examples

Input

7
1234567

Output

1801

Input

3
101

Output

11

Note

In the first example Dima can split the number 1234567

into integers 1234 and 567. Their sum is 1801.

In the second example Dima can split the number 101 into integers 10 and 1. Their sum is 11.

Note that it is impossible to split the strip into "1" and "01" since the numbers can't start with zeros.

思路:

题目是要把一个大数拆成两个小数,并且让他们加起来的和最小。

根据贪心的思想,可以想到,如果把数从中间分开,从而让两个数的位数差不多时,两者的和应该是比较小的。但是题目中有要求,拆成的两个数不能有前导零。咋办。

就把所有不是零 的元素的索引提出来加到一个vector里面,因为要取尽量中间的数,就用一下lower_bound二分找原数组长度一半的位置mid,能找到vector里接近mid的元素。

然后用这个元素所表示的索引,在原来的数组中索引附近遍历,取到不同的分割位置,选出分割后的和最小者。

但是数好像很大哎,只有用字符串来模拟了,传说中的大数加法。

代码:

 #include <iostream>
#include <string>
#include <vector>
using namespace std;
int n;//接收数字位数
string s;//接收数字
vector<int> vec;//来存值不为零的元素的索引
string rm0(string a)//删除前导零
{
int i;
for(i = ;i<a.size();i++)
{
if(a[i]!='')
{
break;
}
}
a = a.substr(i);
return a;
}
string add(string a,string b)//大数加法
{
if(a.size()<b.size()) //先把两者位数补成一样的
{
swap(a,b);
}
a = ''+a;
while(b.size()<a.size())
{
b = ''+b;
}
int c = ;
for(int i = b.size()-;i>=;i--) //从低位到高位加
{
int sum = c+(int)a[i]-''+(int)b[i]-'';
if(sum>=)
{
a[i] = (char)sum-+'';
c = ;
}
else
{
a[i] = (char)sum+'';
c = ;
}
}
a = rm0(a);
return a;
}
int larger(string a,string b)//判断a是不是大于等于b
{
if(a.size()!=b.size())
{
return a.size()>b.size();
}
else
{
for(int i = ;i<a.size();i++)
{
if(a[i]!=b[i])
{
return a[i]>b[i];
}
}
}
return ;
}
int main()
{
cin >> n >> s;
string a = "";
string b = "";
for(int i = ;i<n;i++)
{
if(s[i]!='')
{
vec.push_back(i);
}
}
int mid = lower_bound(vec.begin(),vec.end(),n/)-vec.begin();//找不为零的接近中间位置的数在原数组的索引
string ans = s;
for(int i = -;i<;i++)//在索引附近遍历一遍
{
int pos = max(,min((int)vec.size()-,mid+i));
a = s.substr(,vec[pos]);
b = s.substr(vec[pos]);
string res = add(a,b);
if(larger(ans,res))
{
ans = res;//取最小值
}
}
cout << ans << endl;
return ;
}

参考文章:

我写的可能不清楚,如果还有问题,参见推荐博客:

茄子Min,Codeforces Round #567 (Div. 2)B. Split a Number (字符串,贪心),https://www.cnblogs.com/qieqiemin/p/11033007.html

另外本题涉及到一些实用的字符串处理函数,具体可见:

GGBeng,C++中substr函数的用法,https://www.cnblogs.com/xzxl/p/7243490.html

Codeforces C. Split a Number(贪心大数运算)的更多相关文章

  1. Codeforces - 1181B - Split a Number - 贪心

    https://codeforces.com/contest/1181/problem/B 从中间拆开然后用大数搞一波. 当时没想清楚奇偶是怎么弄,其实都可以,奇数长度字符串的中心就在len/2,偶数 ...

  2. PAT甲题题解-1024. Palindromic Number (25)-大数运算

    大数据加法给一个数num和最大迭代数k每次num=num+num的倒序,判断此时的num是否是回文数字,是则输出此时的数字和迭代次数如果k次结束还没找到回文数字,输出此时的数字和k 如果num一开始是 ...

  3. Codeforces Round #567 (Div. 2)B. Split a Number (字符串,贪心)

    B. Split a Number time limit per test2 seconds memory limit per test512 megabytes inputstandard inpu ...

  4. Codeforces Round #567 (Div. 2) B. Split a Number

    Split a Number time limit per test 2 seconds memory limit per test 512 megabytes input standard inpu ...

  5. 收藏的一段关于java大数运算的代码

    收藏的一段关于java大数运算的代码: package study_02.number; import java.math.BigDecimal; import java.math.BigIntege ...

  6. [PKU2389]Bull Math (大数运算)

    Description Bulls are so much better at math than the cows. They can multiply huge integers together ...

  7. HOJ 2148&POJ 2680(DP递推,加大数运算)

    Computer Transformation Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 4561 Accepted: 17 ...

  8. 大数运算(python2)

    偶然又遇到了一道大数题,据说python大数运算好屌,试了一发,果然方便-1 a = int( raw_input() ); //注意这里是按行读入的,即每行只读一个数 b = int( raw_in ...

  9. java 大数运算[转]

    用JAVA 实现算术表达式(1234324234324 + 8938459043545)/5 + 343434343432.59845 因为JAVA语言中的long 定义的变量值的最大数受到限制,例如 ...

随机推荐

  1. java.lang.ClassNotFoundException: org.apache.http.impl.client.HttpClientBuilder

    添加依赖即可:compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6' ,注意是apache的包

  2. iperf—流量测试

    iperf是另外一款用于流量测试的软件,主要运行于Windows系统和安卓系统的手机/PAD(IOS系统下载需要收费). 一个工作在Server模式,另外一个工作在Client模式,输入Server的 ...

  3. vs2015 debug时出现 C2039“cout”: 不是“std”的成员

    今天想起电脑上的vs2015,发现好久没用了,用了下,遇到了一个问题 由于不常用c++,还是觉得应该记录下来,以免下次遇到,不知怎么处理 新建项目Hello Hello.cpp #include &q ...

  4. linux设置root密码&进入不了root

    刚装的linux无法使用root需要初始化密码 1.设置密码 sudo passwd root 点击回车,然后输入两次你想设置的密码,比如123456 2.切换用户 su root 再输入你刚才设置的 ...

  5. PHP对二维数组进行排序

    /** * 获取最近的店铺 * @param $lng * @param $lat * @return array */ protected function getClosestShop($lng, ...

  6. 卓金武《MATLAB在数学建模中的应用》 第2版

    内容介绍 本书的作者都具有实际的数学建模参赛经历和竞赛指导经验.书中内容完全是根据数学建模竞赛的需要而编排的,涵盖了绝大部分数学建模问题的matlab求解方法.本书内容分上下两篇.上篇介绍数学建模中常 ...

  7. 【转帖】Linux命令行操作json神器jq

    Linux命令行操作json神器jq https://www.cnblogs.com/chenqionghe/p/11736942.html jq类似一个awk或grep一样的神器,可以方便地在命令行 ...

  8. [Linux] 树莓派 4B 安装 Ubuntu 19.10 (Eoan Ermine) IOT 版

    硬件:Raspberry Pi 4B系统:Ubuntu 19.10 (Eoan Ermine) for IOT官网:https://ubuntu.com/download/iot/raspberry- ...

  9. JavaSE面试题:类初始化和实例初始化等

    类初始化过程 1.一个类要创建实例需要先加载并初始化该类 main方法所在的类需要先加载和初始化 2.一个子类要初始化需要先初始化父类 3.一个类初始化就是执行<clinit>()方法 & ...

  10. POJ 1251 Jungle Roads - C语言 - Kruskal算法

    Description The Head Elder of the tropical island of Lagrishan has a problem. A burst of foreign aid ...