0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ABC310 - C - Reversible

Posted at

問題

考察

与えられた文字列は全部で何種類あるかという問題です。ただし、文字列を逆さから見ると他の文字列と一致したという場合であったとしても、それらは同一の文字列と見なす必要があるようです。重複を許さず、文字列が何種類あるかを数えるには、setmapといった重複を許さない集合・辞書配列などを使用するのが便利です。これらに文字列を順に挿入して、最終的にサイズがいくつになったかを出力してみましょう。「文字列が逆さでも同一とみなす」については下記の処置を行うことで対応できます。

  • 各文字列、逆さの場合の文字列を事前に用意しておく。
  • 各文字列、通常の場合と逆さから見た場合とで、辞書順でどちらが前に来るかを比較
    • C++の場合、2つの文字列をmin関数に渡せば求めることができます。
  • より前に来る方を採用し、setまたはmapに挿入する

提出コード(コンテスト後)

ご不明点などがあれば教えていただけると幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?