博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforce915C
阅读量:5942 次
发布时间:2019-06-19

本文共 1627 字,大约阅读时间需要 5 分钟。

C. Permute Digits
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given two positive integer numbers a and b. Permute (change order) of the digits of a to construct maximal number not exceeding b. No number in input and/or output can start with the digit 0.

It is allowed to leave a as it is.

Input

The first line contains integer a (1 ≤ a ≤ 1018). The second line contains integer b (1 ≤ b ≤ 1018). Numbers don't have leading zeroes. It is guaranteed that answer exists.

Output

Print the maximum possible number that is a permutation of digits of a and is not greater than b. The answer can't have any leading zeroes. It is guaranteed that the answer exists.

The number in the output should have exactly the same length as number a. It should be a permutation of digits of a.

Examples
Input
123 222
Output
213
Input
3921 10000
Output
9321
Input
4940 5000
Output
4940 题意:给两个数a和b,可以打乱a每位数的顺序组成一个新的数c, 求满足c<=b的最大,保证结果一定存在。 分析:先求出a的每位数字,然后排个序,再dfs。
#include
#include
#include
using namespace std;int A[100],B[100],C[100],alen,blen;int vis[30],ans[30],K=-1;int cmp(int x,int y){
return x>y;}int f(int a[],long long x){ int len=0; while(x) { a[len++]=x%10; x/=10; } return len;}int dfs(int k)//k为当前构造到第k位数 { if(k==alen) return 1; int last=-1;//前一个数 for(int i=0;i
=0) { for(int i=0;i<=K;i++) printf("%d",ans[i]); for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/ACRykl/p/8311644.html

你可能感兴趣的文章
clear session on close of browser jsp
查看>>
asp.net mvc Post上传文件大小限制 (转载)
查看>>
关于吃掉物理的二次聚合无法实现的需要之旁门左道实现法
查看>>
mysql出现unblock with 'mysqladmin flush-hosts'
查看>>
oracle exp/imp命令详解
查看>>
开发安全的 API 所需要核对的清单
查看>>
Mycat源码中的单例模式
查看>>
WPF Dispatcher介绍
查看>>
fiddler展示serverIP方法
查看>>
C语言中的随意跳转
查看>>
WPF中如何将ListViewItem双击事件绑定到Command
查看>>
《聚散两依依》
查看>>
小tips:你不知道的 npm init
查看>>
Mac笔记本中是用Idea开发工具在Java项目中调用python脚本遇到的环境变量问题解决...
查看>>
Jmeter也能IP欺骗!
查看>>
Rust 阴阳谜题,及纯基于代码的分析与化简
查看>>
ASP.NET Core的身份认证框架IdentityServer4(4)- 支持的规范
查看>>
(原創) array可以使用reference方式傳進function嗎? (C/C++)
查看>>
170多个Ionic Framework学习资源(转载)
查看>>
Azure:不能把同一个certificate同时用于Azure Management和RDP
查看>>