In problem A, if A and B are equal then answer is 1, if they are different, then check abs(A-B), if it is even, an integer can be inserted between A and B such that it is equidistant from A and B so ans is 3, if it is odd, an integer cannot be inserted in between so ans is 2.
解決策を複雑にしすぎている。>< もっと長く考えることを学んで、コードを書き始めたい衝動を抑えなければ...。 i keep over-complicating my solutions >< i should learn to think longer and hold the urge to start to code...
@@evimalab Wow, that's such a great way to explain it. Just revisited the problem and solved it. Thank you so much for these short yet clear explanations!
I think if you can solve C and D, then E is probably not impossible. The only thing that puts it at this slot is Floyd-Warshall, which should be googlable. (It would qualify as a D if you are already given the shortest path table as input.)
楽しかった〜 6完でした
Dはしばらく全員倒せばいいじゃんとなってました(Gルート)
初めて参加しました!
AとBは解けたけど、Cは力業しか分からなくてTLEなってました...
コンボ数を数えたらいいのかーー
文化祭でプログラム担当になってPythonに触れるうちに、競プロにも興味が出てきて初参加してみました
C問題のアルゴリズムが何故かすぐに出てきて正解出来ました
D問題も名前だけ知ってる動的計画法っぽいな〜というところまで行けました
Bは左右に数列を分けてからそれぞれの階差数列をとって各要素の絶対値の和を取ると綺麗
初めて参加してみましたが、Bまでしか解けなかったです...
でも楽しかった~!次こそ、C問題まで解けるといいなあ
最近のA問題地味に難しくなってる気がする
c問題dを求めてあと、どうしたらいいのかなとずっと悩んでいましたがコンボカウントを使えばよかったのですね...とても悔しい...。ABの2完でした
In problem A, if A and B are equal then answer is 1, if they are different, then check abs(A-B), if it is even, an integer can be inserted between A and B such that it is equidistant from A and B so ans is 3, if it is odd, an integer cannot be inserted in between so ans is 2.
i thought problem B was a DP problem but i found that it just follow instruction 🙃
Javaで初参加で全滅、でも後になって見返すとAは全探索の範囲が、Bはそもそも問題の解釈が変だった・・・
最近のA,Bは油断すると時間食われるから結構解くの怖い...
E、M
最近はじめていまだBまで。
Cは解放こそ思いついてはいましたが200msオーバー...
解説見てもあんまり理解できなくて辛いです
AtCoder Beginner Contest は A
AtCoderのサーバーでは、処理にかかる時間が長すぎるとそこで処理が打ち切られます。
そのため「2200msかかりました」と書いてあっても、実際はもっとかかっていることがほとんどです。(地球が終わっても終わってないくらいの時も...)
始めたてでBまで解けているのであれば大変優秀ですので、evimaさんのおっしゃる通り過去問の中から自分に合った問題を解いてみると良いと思います。
B問題、なんで一本指で押しとんねん!って思ってしもた
もう少し捻っても良かったんやで
DのDP書いたけどWAが数個消えなくてタイムアップ
くやし~
I just couldn’t get some cases right in E.. :(
解決策を複雑にしすぎている。><
もっと長く考えることを学んで、コードを書き始めたい衝動を抑えなければ...。
i keep over-complicating my solutions ><
i should learn to think longer and hold the urge to start to code...
Sorry, I don't get how it translates to longest increasing subsequence problem
Sorry, I wish I had more time for F.
You can collect all coins at (r_1, c_1), (r_2, c_2), ..., (r_n, c_n) if and only if r_1
@@evimalab Wow, that's such a great way to explain it. Just revisited the problem and solved it. Thank you so much for these short yet clear explanations!
F is too hard for me,
3:25 図の中のチルノも喋ったぁぁ
ABCD stare at E yet again. skill issue I guess
I think if you can solve C and D, then E is probably not impossible.
The only thing that puts it at this slot is Floyd-Warshall, which should be googlable.
(It would qualify as a D if you are already given the shortest path table as input.)
WOW