kmyk-jikka/Jikka

Use std::set instead of std::vector when it improves time complexity

kmyk opened this issue · 0 comments

kmyk commented

Description / 説明

以下のような感じの使われ方をしている list については std::vector でなく std::set が使われてほしい

xs.append(x)
xs.sort()
return y in xs

Motivation / 動機

https://atcoder.jp/contests/abc217/tasks/abc217_d これ解きたい