Ural
159739
这个作者很懒,什么都没留下…
展开
-
Ural 1014 Product of Digits(水题)
题意:给出n,求最小正整数q,q各个位置上的数的乘积为n; 太水了,就只贴代码了; #include<bits/stdc++.h> using namespace std; int s[100]; int main() { int n; scanf("%d", &n); if(n == 0) { printf("%d\n", 10...原创 2018-04-14 14:39:06 · 224 阅读 · 0 评论 -
Ural 2018 The Debut Album
题意:一个由’1‘,‘2’组成的长度为n的字符串,要求连续的1不超过a个,连续的2不超过b个,求满足条件的字符串的数量,答案模1e9+7; 思路:dp[i][j]表示长度为i,以j结尾,满足条件的字符串的数量; #include<bits/stdc++.h> using namespace std; const int Mod=1e9+7; long long dp[50005][...原创 2018-04-14 15:02:43 · 201 阅读 · 0 评论 -
Ural1136-Parliament
博客出处:https://blog.csdn.net/Walton_/article/details/53366909 题目大意 给出一棵二叉搜索树左子树+右子树+根的后序遍历,要求输出右子树+左子树+根的遍历顺序 解题思路 根据给出的遍历顺序可知最后一个节点一定是根节...转载 2018-04-13 20:36:06 · 139 阅读 · 0 评论