Problem 44365. An asteroid and a spacecraft
Solution Stats
Problem Comments
-
3 Comments
Needs more test cases to eliminate the the trivial non-solution that exploits the lack of test cases.
This problem needs more test cases. My solution probably is not general, but it works without using all of its tests.
An interesting test case, for instance, would be (that my solution and many others would fail):
p0 = [1, 0, 0];
p1 = [ -1, 0, 0];
p2 = [ 0, 1, 0.5];
p3 = [ 0, -1, 0.5];
t0 = 0;
t1 = 1;
d = 1;
ok = false;
At half-way their path, asteroid and spacecraft will be at distance 0.5 of each other, violating the safe distance d=1, and without crossing paths.
Solution Comments
-
1 Comment
As you can see from Solution 1310620, the test suite is completely inadequate for this problem.
Problem Recent Solvers152
Suggested Problems
-
Find the longest sequence of 1's in a binary sequence.
4629 Solvers
-
Return a list sorted by number of occurrences
1898 Solvers
-
1750 Solvers
-
Back to basics 8 - Matrix Diagonals
844 Solvers
-
257 Solvers
More from this Author100
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!