Rafael S.T. Vieira
8
8
Rank122
122
Badges48162
48162
Score
Rafael S.T. Vieira submitted Solution 3499339 to Problem 342. Toolbox check part 3 on 18 Feb 2023 |
Rafael S.T. Vieira submitted Solution 3499314 to Problem 342. Toolbox check part 3 on 18 Feb 2023 |
Rafael S.T. Vieira submitted Solution 3499294 to Problem 342. Toolbox check part 3 on 18 Feb 2023 |
Rafael S.T. Vieira liked Problem 49738. Determine whether a prime is Pythagorean on 1 Dec 2022 |
Rafael S.T. Vieira submitted Solution 9919193 to Problem 49738. Determine whether a prime is Pythagorean on 1 Dec 2022 |
Rafael S.T. Vieira liked Problem 45964. Compute the nth Pythagorean prime on 1 Dec 2022 |
Rafael S.T. Vieira submitted Solution 9919043 to Problem 45964. Compute the nth Pythagorean prime on 1 Dec 2022 |
Rafael S.T. Vieira submitted Solution 9919023 to Problem 45964. Compute the nth Pythagorean prime on 1 Dec 2022 |
Rafael S.T. Vieira received Community Group Solver badge for Triangulated meshes on 29 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 45463. Word Ladder Multiple solutions may exist for this problem, but the test suite only considers one correct. For instance, in test #2, y = {'mat' 'pat' 'put' 'aut' 'apt' 'ape'}; is a valid path from the word man to the word ape. This means we must use words in the order we find them as a priority queue.
on 29 Nov 2022 |
Rafael S.T. Vieira liked Problem 45463. Word Ladder on 29 Nov 2022 |
Rafael S.T. Vieira received Community Group Solver badge for Algorithm I on 29 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9897648 to Problem 45463. Word Ladder on 29 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 45321. Kolakoski Sequence I recommend solving the problem in the description if you haven't already. You can reuse your code here. You will need to make some changes, but it will be easier than solving this one from zero. Numberphile has a video about it if you are still stuck.
on 29 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 45321. Kolakoski Sequence So it's kind of like Kolakoski; the number still gives the length at pos n, like A000002. However, the following number is decided according to a base named "a". So, if a=[4,2,3], the remainder 0,1 or 2 (since a has length 3) will be mapped to 4,2,3 in this order.
on 29 Nov 2022 |
Rafael S.T. Vieira liked Problem 45321. Kolakoski Sequence on 29 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9896568 to Problem 45321. Kolakoski Sequence on 29 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9894438 to Problem 45449. Quarantine Days on 29 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9894433 to Problem 45449. Quarantine Days on 29 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9894428 to Problem 45449. Quarantine Days on 29 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9894068 to Problem 45449. Quarantine Days on 29 Nov 2022 |
Rafael S.T. Vieira liked Problem 45475. Sub-sequence - 03 on 28 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9890823 to Problem 45475. Sub-sequence - 03 on 28 Nov 2022 |
Rafael S.T. Vieira liked Problem 45474. Sub-sequence - 02 on 28 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9890298 to Problem 45474. Sub-sequence - 02 on 28 Nov 2022 |
Rafael S.T. Vieira liked Problem 45473. Sub-sequence - 01 on 28 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9888518 to Problem 45473. Sub-sequence - 01 on 28 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 45426. The Tortoise and the Hare - 02 DP or GA require few test cases, or it can quickly grow beyond what is computational through current technology. For instance, 400 steps going ve or -ve, would require a tree with 2^401-1 nodes. It doesn't matter how we choose to traverse this tree, greedy or DP, it would only be fast to find a solution if there were many possible solutions (for this problem, there are just a few correct ones).
on 28 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 45426. The Tortoise and the Hare - 02 This problem is not really about DP or GA, but it is still good.
on 28 Nov 2022 |
Rafael S.T. Vieira liked Problem 45426. The Tortoise and the Hare - 02 on 28 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9885053 to Problem 45426. The Tortoise and the Hare - 02 on 28 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9880503 to Problem 45422. Coin Distribution - 02 on 28 Nov 2022 |
Rafael S.T. Vieira liked Problem 45422. Coin Distribution - 02 on 28 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9879873 to Problem 45422. Coin Distribution - 02 on 28 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 52629. Count the ways to draw non-intersecting chords between points on a circle Tip: Counting is not as easy as we think. It depends on what we are counting. Counting primes up to n, for instance, is hard. However, It is easy when a pattern or formula can be found...
on 28 Nov 2022 |
Rafael S.T. Vieira received Community Group Solver badge for Sequences & Series V on 28 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 52060. Identify Ruth-Aaron numbers We don't need to have all primes up until n, just the equal sum of the prime factors of two sequential numbers. 77 and 78 are Ruth-Aaron Numbers because 7+11 == 2 + 3 + 13. 7*11 = 77 and 2*3*13 = 78. Only a number will be given as input. If it does not belong to a pair, return 'X,' or else If the lowest number of the pair is given (e.g., 77), your code should return R; if the highest is given, return A (e.g., 78). And if the number can be both, return RA.
PS: The numberphile video is great but doesn't really help.
on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9878023 to Problem 52060. Identify Ruth-Aaron numbers on 27 Nov 2022 |
Rafael S.T. Vieira submitted a Comment to Problem 51715. Iterate the sum of divisors and totient The greatest challenge is to produce the most optimized code. Writing code that works is easy.
on 27 Nov 2022 |
Rafael S.T. Vieira liked Problem 51715. Iterate the sum of divisors and totient on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9877253 to Problem 51715. Iterate the sum of divisors and totient on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9876798 to Problem 52644. List modest numbers up to n on 27 Nov 2022 |
Rafael S.T. Vieira liked Problem 52644. List modest numbers up to n on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9876778 to Problem 52644. List modest numbers up to n on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9873713 to Problem 52283. Find numbers in the Popular Computing Z-sequence on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9873673 to Problem 52283. Find numbers in the Popular Computing Z-sequence on 27 Nov 2022 |
Rafael S.T. Vieira liked Problem 52283. Find numbers in the Popular Computing Z-sequence on 27 Nov 2022 |
Rafael S.T. Vieira submitted Solution 9873643 to Problem 52283. Find numbers in the Popular Computing Z-sequence on 27 Nov 2022 |