Codeforces #451 Div2 F
#451 Div2 F
题意
给出一个由数字组成的字符串,要求添加一个加号和等号,满足数字无前导 0 且等式成立。
分析
对于这种只有数字的字符串,可以快速计算某一区间的字符串变成数字后并取模的值,首先从右到左,将字符串转化为数字并取模,那么 \(h[i]\) 表示字符串 \(S[i...len]\) 转化成数字后并取模的值,如果要求区间 \([i, j]\) 所表示的数字是多少,首先求出 \(h[i] - h[j + 1]\),后面的 0 可以除掉,求一下逆元即可。
然后枚举一下,比一下就行了。
code
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;
const int N = 1e6 + 10;
int len;
char s[N], z[N];
ll h[N], b[N], inv[N];
ll POW(ll x, ll k) {
ll r = 1;
while(k) {
if(k & 1) r = r * x % MOD;
x = x * x % MOD;
k >>= 1;
}
return r;
}
ll getval(int l, int r) {
return ((h[l] - h[r + 1]) * inv[len - r - 1] % MOD + MOD) % MOD;
}
int solve(int l1, int l2, int l3) {
int pos1 = 0, pos2 = l1, pos3 = len - l3;
if((!s[pos1] && l1 != 1) || (!s[pos2] && l2 != 1) || (!s[pos3] && l3 != 1)) return 0;
if((getval(pos1, pos2 - 1) + getval(pos2, pos3 - 1)) % MOD == getval(pos3, len - 1)) {
int mnl = min(l1, l2), mxl = max(l1, l2), nl = 0, y = 0;
for(int i = 0; i < mnl; i++) {
z[nl] = (s[pos2 - 1 - i] + s[pos3 - 1 - i] + y) % 10;
y = (s[pos2 - 1 - i] + s[pos3 - 1 - i] + y) / 10;
if(len - nl - 1 < 0 || s[len - nl - 1] != z[nl]) return 0;
nl++;
}
int np = (l1 < l2 ? pos3 : pos2);
for(int i = mnl; i < mxl; i++) {
z[nl] = (s[np - 1 - i] + y) % 10;
y = (s[np - 1 - i] + y) / 10;
if(len - nl - 1 < 0 || s[len - nl - 1] != z[nl]) return 0;
nl++;
}
if(y) {
z[nl] = y;
if(len - nl - 1 < 0 || s[len - nl - 1] != z[nl]) return 0;
nl++;
}
if(nl == l3) {
for(int i = 0; i < l1; i++) printf("%d", s[i]); printf("+");
for(int i = 0; i < l2; i++) printf("%d", s[pos2 + i]); printf("=");
for(int i = 0; i < l3; i++) printf("%d", s[pos3 + i]); printf("\n");
return 1;
}
}
return 0;
}
int main() {
scanf("%s", s);
len = strlen(s);
b[0] = 1;
inv[0] = 1;
s[0] -= '0';
for(int i = 1; i < len; i++) {
b[i] = b[i - 1] * 10 % MOD;
s[i] -= '0';
inv[i] = POW(b[i], MOD - 2);
}
for(int i = len - 1; i >= 0; i--) {
h[i] = (h[i + 1] + b[len - 1 - i] * s[i]) % MOD;
}
for(int i = len / 3; i < len; i++) {
int l3 = i, l2 = i, l1 = len - 2 * i;
if(l1 > 0 && l3 >= l1 && l3 >= l2) {
if(solve(l1, l2, l3)) return 0;
if(solve(l2, l1, l3)) return 0;
}
l2 = i - 1, l1 = len - l3 - l2;
if(l1 > 0 && l3 >= l1 && l3 >= l2) {
if(solve(l1, l2, l3)) return 0;
if(solve(l2, l1, l3)) return 0;
}
}
return 0;
}
Codeforces #451 Div2 F的更多相关文章
- Codeforces #541 (Div2) - F. Asya And Kittens(并查集+链表)
Problem Codeforces #541 (Div2) - F. Asya And Kittens Time Limit: 2000 mSec Problem Description Inp ...
- Codeforces #452 Div2 F
#452 Div2 F 题意 给出一个字符串, m 次操作,每次删除区间 \([l,r]\) 之间的字符 \(c\) ,输出最后得到的字符串. 分析 通过树状数组和二分,我们可以把给定的区间对应到在起 ...
- Codeforces #442 Div2 F
#442 Div2 F 题意 给出一些包含两种类型(a, b)问题的问题册,每本问题册有一些题目,每次查询某一区间,问有多少子区间中 a 问题的数量等于 b 问题的数量加 \(k\) . 分析 令包含 ...
- Codeforces #528 Div2 F (1087F) Rock-Paper-Scissors Champion 树状数组+set
题意:n个人站成一排,初始时刻每个人手中都有一个图案,可能是石头,剪刀,布3个中的1种,之后会随机选取相邻的两个人玩石头剪刀布的游戏,输的人会离开(如果两个人图案相同,则随机选择一个人离开).执行(n ...
- Codeforces #548 (Div2) - D.Steps to One(概率dp+数论)
Problem Codeforces #548 (Div2) - D.Steps to One Time Limit: 2000 mSec Problem Description Input Th ...
- Codeforces #180 div2 C Parity Game
// Codeforces #180 div2 C Parity Game // // 这个问题的意思被摄物体没有解释 // // 这个主题是如此的狠一点(对我来说,),不多说了这 // // 解决问 ...
- Codeforces #541 (Div2) - E. String Multiplication(动态规划)
Problem Codeforces #541 (Div2) - E. String Multiplication Time Limit: 2000 mSec Problem Descriptio ...
- Codeforces #541 (Div2) - D. Gourmet choice(拓扑排序+并查集)
Problem Codeforces #541 (Div2) - D. Gourmet choice Time Limit: 2000 mSec Problem Description Input ...
- Educational Codeforces Round 40 F. Runner's Problem
Educational Codeforces Round 40 F. Runner's Problem 题意: 给一个$ 3 * m \(的矩阵,问从\)(2,1)$ 出发 走到 \((2,m)\) ...
随机推荐
- 结对编程-四则运算GUI的实现
一.项目成员以及coding地址: 洪灏捷(本人)201321122020 coding地址:https://git.coding.net/hoje/The-GUI-operation.git 白至 ...
- 【JMeter】source("文件路程")和${变量}同时出现会报错
source("D:\\apache-jmeter-3.0\\testcase\\java\\Test.java"); //${journeyLen} 以上两句在JMeter脚本里 ...
- Data Base mongodb高版本与低版本的区别
mongodb高版本与低版本的区别 一.mongodb引擎: Mongodb 3.0支持用户自定义存储引擎,用户可配置使用mmapv1或者wiredTiger存储引擎. 3.2版本以后默认的开启的是w ...
- JavaScript:AOP实现
AOP的概念,使用过Spring的人应该都不陌生了.Dojo中,也是支持AOP的.对于JavaScript的其他框架.库不知道有没有AOP的支持.相信即便没有支持,也不会太远了.下面就介绍一下使用Ja ...
- UITextFiled的输入框改成一条下划线
在一些程序的界面中,它们的编辑框是一条线,而UITextFiled本身并没有这种style,所有需要我们自己设置.方法还是挺多的 第一种 , (1).我们可以声明一个类继承与UITextFiled ( ...
- treeview插件使用:根据子节点选中父节点
鄙人公司没有专门的前端,所以项目开发中都是前后端一起抡.最近用bootstrap用的比较频繁,发现bootstrap除了框架本身的样式组件外,还提供了多种插件供开发者选择.本篇博文讲的就是bootst ...
- 如何写一个SSH项目(三)如何进行交互的
下面以登录为例子,展示从前台到后端的一整套流程并进行分析. 首先介绍一下我的SSH的分层结构 action和service一起是业务逻辑层 action层调用service层 dao ...
- Lucene分词停用词库stopwords
! " $ % & ' ( ) * + , - -- . .. ... ...... ................... ./ .一 .数 .日 / // 0 1 2 3 4 5 ...
- webpack配置报错:invalid configuration object.webpack has been initialisted using a configuration objcet that does not match thie API schema
最近接收了别人的项目,webpack配置总是报错如下:最后找到了解决办法,在此分享一下: 错误情况: 解决办法: 将package.json里面的colors删除掉即可
- Java的演化-Java8实战笔记
一个语言要想一直有活力,它也需要跟随着时代的变化去进步,Java作为一个古老的语言,它其实有太多的历史包袱,在改变的过程中需要考虑很多,但是它也在慢慢的演变,巩固自己的城墙,不让自己被遗忘在历史中(不 ...