We will hold Toyota Programming Contest 2023#5(AtCoder Beginner Contest 320).
- Contest URL: https://atcoder.jp/contests/abc320
- Start Time: http://www.timeanddate.com/worldclock/fixedtime.html?iso=20230916T2100&p1=248
- Duration: 100 minutes
- Writer: kyopro_friends, cn449
- Tester: PCTprobability, math957963
- Rated range: ~ 1999
- The point values: 100-200-300-400-475-550-600
We are looking forward to your participation!
Why downvotes are in the announcement? don't be a kid!
why downvote ;(((
HOPE to solve A....This is my first atcoder contest ;}
Why can't I pass problem D!!! The contest will be finished in 18 min!
You are wasting time typing these words.
Bruh, C was so annoying. Solved D in like ~10 minutes, but wasted so much time thinking for C :<
what is mistake in my code for D
https://atcoder.jp/contests/abc320/submissions/45643786
Consider a case: node is already visited but there are some unused edges connected to it.
ywah okay
1e11
($$$10^{11}$$$) is not large enough for infinity. The answer can be up to $$$2\times10^{14}$$$.ohh i chnage it to 1e18
Well, I spend 30 min to understand what C was saying!
Task G it seems flow without any optimization passed.
can anybody please tell me a counter test case for C problem according to my code. or where my logic is wrong?
Have you consider when a certain digits are located in the same position?
Me wasting 40 minutes on C not realizing there were only 3 slot machines. :(
Same :sob:
For $$$C$$$, You can just make 3 consecutive copies of each string ($$$S_i =S_i + S_i + S_i$$$).
Try every digit[0:9] and if you found 3 different indices have the same digit, minimize the maximum index with the answer . Code : 45651190
can somebody tell me why i am stuck in problem D
https://atcoder.jp/contests/abc320/submissions/45651936
use 64-bit integer instead of 32-bit
in the editorial of F: in the fourth case we need to iterate right? so how the complexity will stay O(n^3) ? https://atcoder.jp/contests/abc320/editorial/7169
This will happen only when $$$k=H$$$, which is $$$O(H)$$$ for every $$$dp_{i,j}$$$.
Sub AtCoder it locked my account without any email or notice.
fu!
That's your own problem.Not AtCoder's problem.
The data of question C is suggested to be strengthened
this is the hack input
answer:
Output the wrong answer '6' but accepted code. https://atcoder.jp/contests/abc320/submissions/45625948
This hack can block some greedy algorithms, including me.
For problem G: (1) (2)
The (1) code shows about 7 times slower than (2) for test 5, and it gets TLE. (2) is AC, and the difference between (1) and (2) is the way of adding the element to the b array: for (1), i use (line 135 to 141)
for (2) (line 134 to 137):
Why is (1) so slow? Very thanks!