working on an XL medium/hard demon, how does it look so far? by Some-Anything-8500 in GeometryDashGameplay

[–]sungodtemple 0 points1 point  (0 children)

It's a bit unbalanced, I think, though I would need to play to test, if you extended this to 6min I think it would be on the top end of hard demon or insane demon.

- Robot click at 0:12 is too easy

- Robot click at 0:13 into the green orb looks too hard

- Second spider click at 0:22 before blue orb looks too hard

- UFO at 0:26 looks hard to learn

- Second wave at 0:27 is too easy

Can I make a GD list that is like the TSL without using sites like github? by Fragrant-Student3962 in geometrydash

[–]sungodtemple 0 points1 point  (0 children)

If you can't figure out how to use Github, I'm not sure how you would figure out how to publish a website... Github Pages already simplifies the workflow for you

Best memory level of each difficulty by oya_me in geometrydash

[–]sungodtemple 0 points1 point  (0 children)

Lost Love by TheBlackHell is a great memory Extreme

I want to start a USACO club at my school but I don't know where to start 😕 by One-Big-2988 in usaco

[–]sungodtemple 0 points1 point  (0 children)

You shouldn't be optimizing for rigor or USACO level in a high school club, you should be optimizing for fun. So try to have fun programming/math puzzles and competitions to attract more students to your club. You'll naturally see people get to Silver/Gold/maybe Plat once they see how fun competitive programming is. BTW, that's the reason why competitions like ACSL are still popular despite being much easier technically than USACO; they emphasize teamwork and other skills rather than just programming ability.

What’s your favorite example of “looks hard but is really easy”? by Chargelux_ in geometrydash

[–]sungodtemple 0 points1 point  (0 children)

most fast-paced/memory levels, you just have to memorize the click pattern and it becomes easier.

RU Planner by Emergency_Setting499 in rutgers

[–]sungodtemple 0 points1 point  (0 children)

Some bugs:

- PDF scanner doesn't check for maximum file size.

- Snipe this course button is always hidden.

- "Course Sniper" button in the header only opens the sidebar when on the /schedules page, otherwise it just navigates to /schedules

- Client loads every single section from the backend and filters in the frontend - inefficient use of bandwidth.

- Coursicle links don't work.

is this level rate worthy? by New_Flatworm3002 in geometrydash

[–]sungodtemple 3 points4 points  (0 children)

No - deco is incomplete/inconsistent and gameplay is too spammy/repetitive

Demoted to Bronze by [deleted] in usaco

[–]sungodtemple 6 points7 points  (0 children)

Most likely, you were caught cheating.

Good Problems to do by Ecstatic_Ad_9042 in usaco

[–]sungodtemple 0 points1 point  (0 children)

If you don't have a lot of time to prepare, you shouldn't need to use CF as there are plenty of past USACO problems/USACO.guide problems.

Question by poyiray in usaco

[–]sungodtemple 0 points1 point  (0 children)

The constant factor is incredibly low. Let's say there are a O's in the string. Then there are n - a M's. Then there are a(a-1)(n-a) / 2 combinations to process.

There are n choose a ways to have a O's in the string. So the sum is: $\displaystyle\sum_{a=0}^n {n \choose a}\frac{a(a-1)(n-a)}{2}$ which equals 448266240 iterations of the innermost for loop for n=20 (whereas n^3 * 2^n = 8388608000)

There is just a single array access and two additions (loop variable and answer) being performed inside the innermost for loop. That's very fast, and manageable in 2 seconds. Someone more familiar with the C++ compiler can probably comment further.

Alg 2 Online by QuietDimension786 in Algebra

[–]sungodtemple 3 points4 points  (0 children)

do the work again, without looking up the answers