二分/三分
xxzccccccc
python/C++, 深度学习,ACM算法竞赛
阿里算法工程师
前百度算法工程师
前滴滴算法工程师
展开
-
51nod 1001 数组中和等于K的数对
1001 数组中和等于K的数对 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注 给出一个整数K和一个无序数组A,A的元素为N个互不相同的整数,找出数组A中所有和等于K的数对。例如K = 8,数组A:{-1,6,5,3,4,2,9,0,8},所有和等于8的数对包括(-1,9),(0,8),(2,原创 2017-03-12 15:31:22 · 305 阅读 · 0 评论 -
51nod 1080 两个数的平方和
1080 两个数的平方和 基准时间限制:1 秒 空间限制:131072 KB 分值: 5 难度:1级算法题 收藏 关注 给出一个整数N,将N表示为2个整数i j的平方和(i <= j),如果有多种表示,按照i的递增序输出。 例如:N = 130,130 = 3^2 + 11^2 = 7^2 + 9^2 (注:3 11同11 3算原创 2017-03-12 17:28:51 · 325 阅读 · 0 评论 -
Codeforces Round #404 (Div. 2) C. Anton and Fairy Tale
题目链接:http://codeforces.com/contest/785/problem/C 题意:给两个数n,m,n表示仓库的最大容量(也是初始容量),m表示每天开始的时候给仓库加m粮(当然不能草果仓库的最大容量)。第 i 天吃掉 粮食 i,求第几天粮食被吃完。 可以分为两种情况: 1.n 2. n>m 该种情况在前m天,每天吃的粮食都小于等于m,都可以在第二天原创 2017-03-16 16:16:57 · 418 阅读 · 0 评论 -
C. Anton and Fairy Tale
C. Anton and Fairy Tale time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Anton likes to listen to fairy tales原创 2017-06-08 16:49:07 · 269 阅读 · 0 评论 -
codeforces 808D - Array Division
D. Array Division time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Vasya has an array a consisting of positi原创 2017-07-31 17:09:17 · 266 阅读 · 0 评论 -
hdu 4430 Yukari's Birthday
Yukari's Birthday Time Limit: 12000/6000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 6314 Accepted Submission(s): 1520 Problem Description Today i原创 2017-07-26 10:19:59 · 221 阅读 · 0 评论