結果

問題 No.1951 消えたAGCT(2)
ユーザー naskyanaskya
提出日時 2022-04-29 17:45:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 145,932 KB
実行使用メモリ 27,312 KB
最終ジャッジ日時 2024-06-28 23:08:02
合計ジャッジ時間 10,083 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 274 ms
27,312 KB
testcase_09 AC 266 ms
27,188 KB
testcase_10 AC 275 ms
27,312 KB
testcase_11 AC 272 ms
27,188 KB
testcase_12 AC 153 ms
17,632 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 301 ms
21,308 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 268 ms
27,284 KB
testcase_22 AC 274 ms
27,056 KB
testcase_23 AC 273 ms
27,184 KB
testcase_24 AC 271 ms
27,184 KB
testcase_25 AC 275 ms
27,180 KB
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cassert>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <iostream>
#include <string>

constexpr auto nchars = ('Z' - 'A') + 1;

int nAGCT(const std::array<int, nchars> a, const int rot) {
  int res = 0;
  for (const auto n : {'A', 'G', 'C', 'T'})
    res += a[(((n - 'A' - rot) % nchars) + nchars) % nchars];
  return res;
}

int main() {
  int n;
  std::cin >> n;

  std::string s;
  std::cin >> s;

  assert(static_cast<int>(std::size(s)) == n);
  assert(std::all_of(s.cbegin(), s.cend(), [](const char c) { return std::isupper(c); }));

  std::array<int, nchars> cnt;
  cnt.fill(0);

  for (const char c : s)
    ++cnt[c - 'A'];

  int rot = 0, res = 0;

  __gnu_pbds::tree<int, __gnu_pbds::null_type, std::less<int>, __gnu_pbds::rb_tree_tag, __gnu_pbds::tree_order_statistics_node_update> t;
  for (int i = 0; i < n; ++i)
    t.insert(i);

  while (true) {
    int left = nAGCT(cnt, rot);

    if (left == 0) {
      std::cout << res << '\n';
      return 0;
    }

    auto iter = t.find_by_order(left - 1);
    --cnt[s[*iter] - 'A'];
    rot += cnt[s[*iter] - 'A'];
    t.erase(iter);

    ++res;
  }
}
0