結果

問題 No.3015 アンチローリングハッシュ
ユーザー tonyu0tonyu0
提出日時 2024-05-17 01:59:16
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,620 bytes
コンパイル時間 3,518 ms
コンパイル使用メモリ 117,348 KB
実行使用メモリ 15,152 KB
最終ジャッジ日時 2024-05-17 01:59:23
合計ジャッジ時間 5,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 12 ms
6,940 KB
testcase_09 AC 10 ms
6,948 KB
testcase_10 AC 15 ms
8,668 KB
testcase_11 AC 28 ms
14,528 KB
testcase_12 AC 18 ms
10,100 KB
testcase_13 AC 10 ms
7,156 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 13 ms
7,872 KB
testcase_18 AC 30 ms
15,152 KB
testcase_19 AC 30 ms
15,116 KB
testcase_20 AC 31 ms
15,052 KB
testcase_21 AC 15 ms
8,900 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <vector>
using namespace std;
using ll = long long;
#define rep(i, j, n) for (ll i = j; i < (n); ++i)
#define rrep(i, j, n) for (ll i = (n) - 1; j <= i; --i)
#define all(a) a.begin(), a.end()
template <typename T>
std::ostream &operator<<(std::ostream &os, std::vector<T> &a) {
  for (size_t i = 0; i < a.size(); ++i) os << (i > 0 ? " " : "") << a[i];
  return os << '\n';
}
template <typename T>
std::istream &operator>>(std::istream &is, std::vector<T> &a) {
  for (T &x : a) { is >> x; }
  return is;
}

//[[maybe_unused]] constexpr long long MOD = 998244353;
// constexpr long long MOD = 1000000007;
[[maybe_unused]] constexpr int INF = 0x3f3f3f3f;
[[maybe_unused]] constexpr long long INFL = 0x3f3f3f3f3f3f3f3fLL;

int main() {
  cin.tie(0)->sync_with_stdio(0);
  //
  ll a, b;
  cin >> a >> b;

  string s;
  char c = 0;
  rep(i, 0, b * 10) {
    s += c + 'a';
    c = (c + 3) % 26;
  }
  int n = (int)s.size();
  vector<ll> hash(n + 1);
  rep(i, 0, n) { hash[i + 1] = (hash[i] * a + s[i]) % b; }
  vector<ll> mp(b);
  rep(i, 0, n) mp[hash[i]]++;
  ll mx = 0, mxi = 0;
  rep(i, 0, b) if (mx < mp[i]) mx = mp[i], mxi = i;

  vector<int> ids;
  rep(i, 0, n) if (hash[i] == mxi) ids.push_back(i);
  int id1 = ids[0], id2 = ids[1], id3 = ids[2], id4 = ids[3];
  if (id2 - id1 == id4 - id3) id4 = ids[4];
  string t = s.substr(0, id1) + s.substr(id3, id4 - id3) +
             s.substr(id2, id3 - id2) + s.substr(id1, id2 - id1) +
             s.substr(id4, n - id4);
  cout << s << '\n' << t << '\n';
}
0