
ACM_简单题
feng_zhiyu
这个作者很懒,什么都没留下…
展开
-
Dinner
Little A is one member of ACM team. He had just won the gold in World Final. To celebrate, he decided to invite all to have one meal. As bowl, knife and other tableware is not enough in the kitchen,原创 2017-07-03 10:25:04 · 434 阅读 · 0 评论 -
【天梯赛】L1-025. 正整数A+B
时间限制 400 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 陈越 本题的目标很简单,就是求两个正整数A和B的和,其中A和B都在区间[1,1000]。稍微有点麻烦的是,输入并不保证是两个正整数。输入格式:输入在一行给出A和B,其间以空格分开。问题是A和B不一定是满足要求的正整数,有时候可能是超出范围的数字、负数、带小数...原创 2018-03-20 15:40:13 · 521 阅读 · 0 评论 -
【 Codeforces Round #462 (Div. 2)】B. A Prosperous Lot
题目链接分析:k>36 ,输出-1, <36 , 根据k的奇偶性输出Code:int main(){ int k; while(cin>>k) { if(k>36) puts("-1"); else { for(int i=0; i&l...原创 2018-02-14 23:48:20 · 380 阅读 · 0 评论 -
【Codeforces Round #462 (Div. 2)】A - A Compatible Pair
题意:给定序列A和序列B,Tommy从序列A中隐藏(删掉)一个元素, Banban从序列A和B中分别取出一个元素,他们的乘积a[i]*b[j],Tommy尽量使它们小, Banban尽量使它们更大。 求乘积的结果 -10^9<=Ai,Bi<=10^9 , 序列长度n,m范围是[1,50]分析:被叉得飞起的一题。 自己也被叉了。。 xg.. 可以把所有的乘积结果存起来,排序...原创 2018-02-14 23:44:20 · 469 阅读 · 0 评论 -
【hdu 5349 2015多校赛】A simple problem(multiset)
Problem Description You have a multiple set,and now there are three kinds of operations: 1 x : add number x to set 2 : delete the minimum number (if the set is empty now,then ignore it) 3 : qu...原创 2018-02-10 20:25:38 · 399 阅读 · 0 评论 -
【Codeforces Round #460 (Div. 2) C - Seat Arrangements】(模拟)
链接:http://codeforces.com/contest/919/problem/C 题意:给定n*m的矩形,只由’*’ 和’.’组成,’.’代表空座,问能找到多少种连续(只能是横着或者竖着)的k个座位的方案?分析: 模拟 或者前缀和 注意:k=1时这种情况 暴力。 事实证明我需要学习暴力, 暴力的姿势。。 复杂度O(n^2) 代码:#include using原创 2018-02-01 17:24:58 · 336 阅读 · 0 评论 -
(hnust 1586)Maximum Product
时间限制: 1 Sec 内存限制: 128 MB 提交: 197 解决: 58题目描述 Given a positive integer N, split it into K non-negative integers. i.e. N = x1+x2+..+xk. Define p as the product of all integers in the set. i.e. p=x1*x2原创 2017-08-06 20:10:52 · 338 阅读 · 0 评论 -
(hdu6033)Add More Zero(数学,取对数)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 1409 Accepted Submission(s): 917Problem Description There is a youngster known for amateu原创 2017-08-06 15:20:27 · 381 阅读 · 0 评论 -
(hdu6043)KazaQ's Socks(水)
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 131072/131072 K (Java/Others) Total Submission(s): 1256 Accepted Submission(s): 751Problem Description KazaQ wears socks everyday.At the beg原创 2017-08-06 16:04:12 · 371 阅读 · 0 评论 -
(hnust 1208)Problem C: Primary Arithmetic(水题)
时间限制: 1 Sec 内存限制: 128 MB 提交: 4 解决: 3 [提交][状态][讨论版] 题目描述 Problem C: Primary Arithmetic Children are taught to add multi-digit numbers from right-to-left one digit at a time. Many find the “carry”原创 2017-08-08 13:43:15 · 852 阅读 · 0 评论 -
(fzu) Problem L Tic-Tac-Toe(水)
Problem Description Kim likes to play Tic-Tac-Toe. Given a current state, and now Kim is going to take his next move. Please tell Kim if he can win the game in next 2 moves if both player are clever原创 2017-07-22 20:30:09 · 520 阅读 · 0 评论 -
手势密码
题目描述 很多手机或平板电脑软件都可以设置手势密码,在设置了手势密码后,进入程序时,首先要输入手势密码。手势密码最少选择4个点,最多选择9个点,理论上的密码组合总共有985824种,扣除掉其中不可能完成的组合(如一些点不允许绕过),最终的可能性是389112种。可见,手势密码加强了软件访问的安全性。下面介绍一下手势密码的规则(如果你熟悉手势密码的规则,可略过):1) 从某一个点出发,不间断地画线原创 2017-07-21 10:41:26 · 7967 阅读 · 0 评论 -
You are my brother
Little A gets to know a new friend, Little B, recently. One day, they realize that they are family 500 years ago. Now, Little A wants to know whether Little B is his elder, younger or brother.输入:原创 2017-07-03 10:30:13 · 577 阅读 · 0 评论 -
【天梯赛】L1-020. 帅到没朋友
时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 陈越 当芸芸众生忙着在朋友圈中发照片的时候,总有一些人因为太帅而没有朋友。本题就要求你找出那些帅到没有朋友的人。输入格式:输入第一行给出一个正整数N(<=100),是已知朋友圈的个数;随后N行,每行首先给出一个正整数K(<=1000),为朋友圈中...原创 2018-03-20 15:43:12 · 395 阅读 · 0 评论