Educational Codeforces Round 39 (Rated for Div. 2) 946E E. Largest Beautiful Number
题:
OvO http://codeforces.com/contest/946/problem/E
CF 946E
解:
记读入串为 s ,答案串为 ans,记读入串长度为 len,下标从 1 开始。
分三种情况讨论
1.数字位数为奇数,设数字位数为 len,则输出 ( len-1 ) 个 9 即可
2.数字位数为偶数,其中最高位为,最低位为 或者,其他位为 ,(即 100001,100 这些形式),记数字位数为 len,则输出 ( len-2 ) 个 9 即可
3.数字位数为偶数,而并非是第二种情况,那么进行一次 dfs 即可
dfs 中,记处理到第 id 位,进行如下两种情况的匹配
1.ans[id] = s[id],此时要继续进行为 id+1 位的dfs。
2.ans[id] < s[id],此时在区间 [0,s[id]-1] 中从大到小寻找合适值,如果找到,那么答案串的 1~id 位已经确定, 而余下的 id+1~len 位可以从前面推导得到,所以不用继续进行 dfs。
dfs部分代码如下(预处理中我已经将读入串s整体值减一)
bool dfs(int id)
{
if(id==len+1) return true;
bool flag;
int pi,now=s[id];
//1
if(cnt[now])
cnt[now]--,ned--,ans[id]=now;
else
cnt[now]++,ned++,ans[id]=now;
if(ned<=len-id+1)
{
flag=dfs(id+1);
if(flag) return true;
}
if(cnt[now])
cnt[now]--,ned--,ans[id]=-1;
else
cnt[now]++,ned++,ans[id]=-1;
//2
while(now-1>=0)
{
now--;
if(cnt[now])
cnt[now]--,ned--,ans[id]=now;
else
cnt[now]++,ned++,ans[id]=now;
if(ned<=len-id+1)
return true;
if(cnt[now])
cnt[now]--,ned--,ans[id]=-1;
else
cnt[now]++,ned++,ans[id]=-1;
}
return false;
}
好♂用的数据
7
89
88
1000
28923845
340011
1001 88
77
99
28923839
339933
99
全部代码:
#include <iostream>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <cstdio> using namespace std; const int M=2e5+44;
const int N=14; char str[M];
int s[M],len;
int cnt[N],ned;
int ans[M]; void fillAns()
{
int pi=len;
for(int i=0;i<=9;i++)
while(cnt[i]--)
ans[pi--]=i;
while(ans[pi]==-1)
ans[pi]=9,pi--;
} bool dfs(int id)
{
if(id==len+1) return true;
bool flag;
int pi,now=s[id];
//1
if(cnt[now])
cnt[now]--,ned--,ans[id]=now;
else
cnt[now]++,ned++,ans[id]=now;
if(ned<=len-id+1)
{
flag=dfs(id+1);
if(flag) return true;
}
if(cnt[now])
cnt[now]--,ned--,ans[id]=-1;
else
cnt[now]++,ned++,ans[id]=-1;
//2
while(now-1>=0)
{
now--;
if(cnt[now])
cnt[now]--,ned--,ans[id]=now;
else
cnt[now]++,ned++,ans[id]=now;
if(ned<=len-id+1)
return true;
if(cnt[now])
cnt[now]--,ned--,ans[id]=-1;
else
cnt[now]++,ned++,ans[id]=-1;
}
return false;
} void solve()
{
memset(cnt,0,sizeof(cnt)); ned=0;
memset(ans,-1,sizeof(int)*(len+22));
dfs(1);
fillAns();
for(int i=1;i<=len;i++)
printf("%d",ans[i]);
puts("");
} int main()
{
int ex0,ex1;
int cas;
scanf("%d",&cas);
for(int icas=1;icas<=cas;icas++)
{
scanf("%s",str+1);
len=strlen(str+1);
for(int i=1;i<=len;i++)
s[i]=str[i]-'0';
int pi=len;
s[pi]--;
while(s[pi]<0)
{
s[pi]+=10;
pi--; s[pi]--;
}
ex0=ex1=0;
for(int i=1;i<=len;i++)
if(s[i]==0) ex0++;
else if(s[i]==1) ex1++;
if(s[1]==0 || (ex0+ex1==len && ex1==1))
{
for(int i=1;i<=len-2;i++)
printf("9");
puts("");
}
else if(len&1)
{
for(int i=1;i<=len-1;i++)
printf("9");
puts("");
}
else
solve();
}
return 0;
} /* 7
89
88
1000
28923845
340011
1001 88
77
99
28923839
339933
99 */
Educational Codeforces Round 39 (Rated for Div. 2) 946E E. Largest Beautiful Number的更多相关文章
- Educational Codeforces Round 39 (Rated for Div. 2) G
Educational Codeforces Round 39 (Rated for Div. 2) G 题意: 给一个序列\(a_i(1 <= a_i <= 10^{9}),2 < ...
- #分组背包 Educational Codeforces Round 39 (Rated for Div. 2) D. Timetable
2018-03-11 http://codeforces.com/contest/946/problem/D D. Timetable time limit per test 2 seconds me ...
- Educational Codeforces Round 39 (Rated for Div. 2) B. Weird Subtraction Process[数论/欧几里得算法]
https://zh.wikipedia.org/wiki/%E8%BC%BE%E8%BD%89%E7%9B%B8%E9%99%A4%E6%B3%95 取模也是一样的,就当多减几次. 在欧几里得最初的 ...
- codeforces Educational Codeforces Round 39 (Rated for Div. 2) D
D. Timetable time limit per test 2 seconds memory limit per test 256 megabytes input standard input ...
- Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship
Problem Educational Codeforces Round 60 (Rated for Div. 2) - C. Magic Ship Time Limit: 2000 mSec P ...
- Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems(动态规划+矩阵快速幂)
Problem Educational Codeforces Round 60 (Rated for Div. 2) - D. Magic Gems Time Limit: 3000 mSec P ...
- Educational Codeforces Round 43 (Rated for Div. 2)
Educational Codeforces Round 43 (Rated for Div. 2) https://codeforces.com/contest/976 A #include< ...
- Educational Codeforces Round 35 (Rated for Div. 2)
Educational Codeforces Round 35 (Rated for Div. 2) https://codeforces.com/contest/911 A 模拟 #include& ...
- Codeforces Educational Codeforces Round 44 (Rated for Div. 2) F. Isomorphic Strings
Codeforces Educational Codeforces Round 44 (Rated for Div. 2) F. Isomorphic Strings 题目连接: http://cod ...
随机推荐
- 什么是SSH 以及常见的ssh 功能
什么是SSH? 简单说,SSH是一种网络协议,用于计算机之间的加密登录.如果一个用户从本地计算机,使用SSH协议登录另一台远程计算机,我们就可以认为,这种登录是安全的,即使被中途截获,密码也不会泄露. ...
- HashSet和HashMap
HashMap 概念和特征 概念:以键值对的形式存储数据,由键映射到值,核心在于Key上. 特征:键不能重复,值可以重复:key-value允许为null. HashMap Since ...
- 在VMware Workstation10下CentOS7虚拟机中创建与主机共享文件夹的详细步骤
一.前言 在使用虚拟机时,常常需要与宿主计算机(以下简称为主机)操作系统交换文件,为此需要在虚拟机与主机之间建立共享文件夹. 二. 安装VMTools 要使用共享文件机制,必须首先安装VMTools. ...
- C#基础算法题 找出最大值和最小值
找出最大值和最小值 题目要求 输入n个数,n<=100,找到其中最小的数和最大的数 实现代码 using System; namespace _1.求最大最小 { class Program { ...
- MongoDB journal 与 oplog,究竟谁先写入?--转载
MongoDB journal 与 oplog,谁先写入?最近经常被人问到,本文主要科普一下 MongoDB 里 oplog 以及 journal 这两个概念. journal journal 是 M ...
- Scratch技巧—-使用克隆技术实现菜单按钮
昨天讲了克隆技术的一个具体应用:生成菜单按钮.有的小朋友迫不及待的试验了一下,发现菜单按钮是生成了,但是如何触发相应的按钮功能呢?触发功能的处理代码也是在克隆体里面实现哦.请看案例: 启动程序时,先隐 ...
- Struts2中OGNL表达式的用法
今天分享的是Struts2框架中的一种ognl表达式语言,主要分两个目标去学习 1.理解struts2传值的优先级 2.ognl与el的区别 一:ognl表达式语言简介 OGNL的全称是O ...
- JDBC 学习复习10 编写自己的JDBC框架
首先万分感谢狼哥 孤傲苍狼 博客,整个jdbc学习的博客资料 链接为http://www.cnblogs.com/xdp-gacl/p/4006830.html 详细代码见狼哥博客,列出我学习过程中遇 ...
- 常用shell命令积累
把学习工作中见到的shell命令积累下来 创建文件夹 mkdir 创建文件 touch 发送get请求 curl xxxxx 发送post请求 curl -d xxxxx
- tf 2.0
tf.function和Autograph使用指南-Part 1 "Keras之父发声:TF 2.0 + Keras 深度学习必知的12件事" Effective TensorFl ...