- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关闭。这个问题需要debugging details .它目前不接受答案。
想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。
去年关闭。
Improve this question
You are given the coordinates (x,y). Initially, you are at (1,1) andare required to go to (x,y) using the following rule: If the currentposition is (a,b) then in the next move, you can move only to (a+b,b)or (a,a+b). Write a program to check if you can reach (x,y) usingonly the described moves.
import java.util.*;
class Solution{
static boolean sol(int a, int b, int x, int y){
if( a == x && b == y)
return true;
else if(a > x || b > y)
return false;
else{
if(sol(a+b, b, x, y)) return true;
if(sol(a, a+b, x, y)) return true;
}
return false;
}
static String ans(int x, int y){
if(sol(1, 1, x, y)) return "Yes";
return "No";
}
public static void main(String[] args) {
int x, int y;
Scanner sc = new Scanner(System.in);
x = sc.nextInt();
y = sc.nextInt();
System.out.println(ans(x, y));
}
}
这是我写的代码。有人可以告诉我解决这个问题的有效方法并告诉我我的代码有什么问题吗?
最佳答案
你的问题说:
If the current position is (a,b) then in the next move, you can move only to (a+b,b) or (a,a+b).
if(sol(a+b, a, x, y)) return true; // a should be b
if(sol(a, a+b, x, y)) return false; // false should be true
if(sol(a+b, b, x, y)) return true;
if(sol(a, a+b, x, y)) return true;
if(sol(a+b, b, x, y) || sol(a, a+b, x, y)) return true;
根据上述建议,完整代码将是:
import java.util.*;
class Solution {
static boolean sol(int a, int b, int x, int y) {
if(a == x && b == y)
return true;
else if(a > x || b > y)
return false;
else if(sol(a+b, b, x, y) || sol(a, a+b, x, y)) // fix applied here
return true;
return false;
}
static String ans(int x, int y) {
if(sol(1, 1, x, y)) return "Yes";
return "No";
}
public static void main(String[] args) {
int x, int y;
Scanner sc = new Scanner(System.in);
x = sc.nextInt();
y = sc.nextInt();
System.out.println(ans(x, y));
}
}
(1, 1)
开始以及
(a, b)
的任何下一步是
(a+b, b) or (a, a+b)
所以
x > 0 and y > 0
是任何步骤的必需条件
(x, y)
.
Step k: (a, b)
Step k+1: (a2, b2) = (a+b, b) OR (a, a+b)
所以如果我们想导出
step#k
来自
step#k+1
那么我们可以说
(a, b)
可以是以下两个之一:
(a2 - b2, b2) OR (a2, b2 - a2)
.我们可以
轻松删除一个选项 众所周知,
a > 0 and b > 0
.
(a2 - b2) > 0
然后 (a, b)
必须是 (a2 - b2, b2)
. (b2 - a2) > 0
然后 (a, b)
必须是 (a2, b2 - a2)
. a2 == b2
(而不是 1
)然后是 a2 - b2
和 b2 - a2
将是 0
这是不可能的,因为 a > 0 and b > 0
是必要条件。 (x, y)
开始并尝试联系
(1, 1)
通过以上观察
线性时间 .要点将是:
static boolean solve(int x, int y) {
if (x == 1 && y == 1) {
return true;
}
if (x == y || x < 1 || y < 1) {
return false;
}
if (x > y) {
return solve(x - y, y);
} else {
return solve(x, y - x);
}
}
以上解决方案是递归的,Ole V.V.在
this answer 中有一个好点子关于可能
StackOverflowError
如果输入数字很大并且堆栈内存分配相对较少。根据他对迭代解决方案需求的建议,我提供了以下迭代方法的要点:
static boolean solve(int x, int y) {
while (x > 0 && y > 0) {
if (x == y) {
return (x == 1); // x and y can be same if they are 1, otherwise impossible
}
if (x > y) {
x = x - y;
} else {
y = y - x;
}
}
return false;
}
关于java - 假设初始位置是(1, 1),看看你是否可以在每一步通过以下给定的规则到达(x, y),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63966620/
#include int main () { char name[20]; printf("Type your name please: "); fgets(name,20,
我有一个使用 new Regex(string pattern) 构造函数创建的 Regex 对象,之后有没有办法查看创建该 regex 对象的模式? 我似乎无法访问 Regex 或 RegexOpt
我从 C 开始,我必须检查 main 函数的参数是否为 double。我正在尝试使用 strtod,但它给我带来了一些麻烦。所以我的主要看起来像这样: int main (int argc,
假设我有: 如何检查 $('.outer') 是否有一个 div,其中包含名为“bar”的类? 最佳答案 使用:has选择器。 $('.outer:has(.bar)') jsFiddle .
花点时间看看这个 fiddle 。此处,Container1 和 Container2 具有背景色:#ccc 和 h1,而 .logo div 具有边距。左右边距工作正常。为什么 Margin-Top
试试这个: template class Base { public: int someBaseMember;
在我获取远程数据 (git-fetch) 之后,git 足够友好地告诉我每个分支上的 SHA,old..new,但是如果我在控制台工作了很多,我可能会失去它们。 如何再次显示它们? 当然我可以将输出保
我在 Wordpress 平台上构建了一个带有水平菜单的网站。 在 ie 9+ 和 firefox 中查看时似乎没问题,但在 ie8- 上菜单 css 类似乎不正确。 我正在使用 firebug 努力
是否可以查看该类型实现了哪些类型类?像这样的东西: >:typeclasses Int [Num, etc...] 最佳答案 使用:info命令。 Prelude> :info Int data In
我正在使用Windows功能CreateToolhelp32snapshot枚举我的机器上正在运行的进程。 pe32.szeFileName它返回的字段是 WCHAR ,这是可执行文件的名称。 我想将
我编写了一个函数,它接受一些参数,并在函数内部使用一个类,该类具有来自第三方库的函数,该函数返回一个 promise ,并且我在自己的函数中返回该 promise 的结果。像: return clie
在 R 中,可以指定一个公式: F <- as.formula('X ~ 1') 我正在尝试想出一种方法来测试上面的 F 是否仅包含截取,即 ~1。我试图使用 grepl 无济于事。有没有办法确定上面
我是一名优秀的程序员,十分优秀!