天天工作在Ubuntu上,突然发现,Ubuntu下缺少一个Oracle的开发工具,类似Toad, Sqldeveloper的Oracle开发工具,于是,萌生一个念头,想开始开发一个Ubuntu平台的Frog. 希望大家支持我。我决定开始使用Gedit的结构,重用每个组件,逐个组件的开发和替换。对于界面,抽象出下面的界面结构(lean from eclipse),frog-perspective&n
原创
2009-09-08 15:30:11
1299阅读
Frog and PortalHihoCoder - 1873 https://vjudge.net/problem/HihoCoder-1873/origin小青蛙这道题很有趣,巧妙的构造,因为斐波那契里面有1,所以任何正整数都能拆分成斐波那契数的和,问题就在于怎么去拆成和,队友想的是倒着做 1
转载
2020-09-23 20:03:00
138阅读
2评论
Lazy frogThere was once a frog who live in the depth of the unknown wells, one day he wanted to walk out.But he was lazy, climb three meters daytime and night will fall two meters.If given the well de
原创
2022-07-08 10:11:20
51阅读
http://acm.hdu.edu.cn/showproblem.php?pid=5578Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Problem DescriptionN frogs from different countries are standing in ...
原创
2022-02-06 11:03:59
64阅读
Solution 1: Backtracking, but will TLE Better Solution: DP (refer to https://discuss.leetcode.com/topic/59903/very-easy-to-understand-java-solution-wi
转载
2016-12-02 08:35:00
144阅读
2评论
https://leetcode.com/problems/frog-jump/ // 受以下网页启发,用递归可行 // https://discuss.leetcode.com/topic/59337/easy-version-java public class Solution { Map mp; private int[] stones; public bool...
转载
2016-09-21 03:28:00
69阅读
2评论
http://acm.hdu.edu.cn/showproblem.php?pid=5578Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Problem DescriptionN frogs from different countries are standing in ...
原创
2021-07-14 10:46:07
82阅读
FrogTime Limit: 3000/1000 MS (Java/Others)Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 492Accepted Submission(s): 221Problem DescriptionA little frog named Fog is on his way home. The path's length is N (1 <= N <= 100), and there are many insects along the way. Suppose the
原创
2021-07-29 16:25:07
119阅读
原题链接在这里:https://leetcode.com/problems/frog-jump/description/ 题目: A frog is crossing a river. The river is divided into x units and at each unit there
转载
2018-01-20 02:22:00
97阅读
2评论
#include
#include
#in
原创
2022-08-17 15:41:02
80阅读
Frog题解:模拟肯定是不能模拟的了,就考虑怎样放石头才能让青蛙跳的次数尽量多了。能想到的只
原创
2022-11-30 13:09:33
39阅读
题 题意 求相同字母最近距离 分析 用数组保存各个字母最后出现的位置,维护最小距离。 代码
原创
2021-07-22 13:52:15
118阅读
Description In Korea, the naughtiness of the cheonggaeguri, a small frog, is legendary. This is a well deserved reputation, because the frogs jump thr
转载
2017-09-10 16:52:00
59阅读
2评论
A frog is crossing a river. The river is divided into x units and at each unit there may or may not exist a stone. The frog can jump on a stone, but i
转载
2019-02-19 22:10:00
98阅读
2评论
http://poj.org/problem?id=1054 1 #include 2 #include 3 #include 4 #define maxn 5001 5 using namespace std; 6 7 int r,c,n,x2,y2; 8 bool vis[maxn][m...
转载
2014-07-04 11:34:00
22阅读
2评论
Friendship of FrogTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 135 Accepted Submission(s): 10...
转载
2015-12-02 14:13:00
70阅读
https://www.youtube.com/watch?v=-FBfrVz841k https://leetcode.com/problems/frog-jump/solution/ A frog is crossing a river. The river is divided into x units and at each unit there may or may not...
转载
2018-11-06 07:47:00
113阅读
2评论
The Troublesome FrogTime Limit: 5000MSMemory Limit: 100000KTotal Submissions: 9449Accepted: 2823Case Time Limit: 500MSDescription In Korea, the naughtiness of the cheonggaeguri, a small frog, is legendary. This is a well-deserved reputation, because the frogs jump through your rice paddy at night, f
转载
2013-08-12 19:57:00
166阅读
2评论
A - Frog 1 Time Limit: 2 sec / Memory Limit: 1024 MB Score : 100100 points Problem Statement There are NN stones, numbered 1,2,…,N1,2,…,N. For each ii
转载
2019-01-09 22:52:00
122阅读
2评论
链接:https://vjudge.net/problem/HDU-2182题意:有一只青蛙,有n
转载
2019-04-02 00:03:00
41阅读
2评论