Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
セットのセットが与えられます:
{{a,b}, {a,b,c}, {a,c},{a,c,f}}
次の「ルックアップ」が高速に実行されるように、これらのセットにインデックスを付けるデータ構造が必要です。特定のセットのすべてのスーパーセットを見つけます。
たとえば、セット {a,c} が与えられた場合、構造体は以下を返します
{{a,b,c},{a,c,f}}
{a,b} ではありません。
助言がありますか?