結果

問題 No.6 使いものにならないハッシュ
ユーザー not_522not_522
提出日時 2015-08-04 13:53:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 5,000 ms
コード長 3,107 bytes
コンパイル時間 1,280 ms
コンパイル使用メモリ 159,820 KB
実行使用メモリ 5,308 KB
最終ジャッジ日時 2023-10-14 22:54:12
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,352 KB
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 11 ms
5,040 KB
testcase_03 AC 3 ms
4,348 KB
testcase_04 AC 4 ms
4,348 KB
testcase_05 AC 4 ms
4,352 KB
testcase_06 AC 7 ms
5,192 KB
testcase_07 AC 5 ms
4,356 KB
testcase_08 AC 7 ms
5,264 KB
testcase_09 AC 5 ms
5,120 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 3 ms
4,348 KB
testcase_12 AC 8 ms
5,040 KB
testcase_13 AC 5 ms
5,068 KB
testcase_14 AC 5 ms
5,220 KB
testcase_15 AC 6 ms
4,348 KB
testcase_16 AC 5 ms
5,184 KB
testcase_17 AC 8 ms
5,044 KB
testcase_18 AC 10 ms
5,040 KB
testcase_19 AC 8 ms
5,204 KB
testcase_20 AC 8 ms
5,208 KB
testcase_21 AC 3 ms
4,348 KB
testcase_22 AC 8 ms
5,272 KB
testcase_23 AC 8 ms
5,188 KB
testcase_24 AC 8 ms
5,308 KB
testcase_25 AC 5 ms
4,352 KB
testcase_26 AC 9 ms
5,104 KB
testcase_27 AC 7 ms
5,272 KB
testcase_28 AC 5 ms
4,352 KB
testcase_29 AC 9 ms
5,120 KB
testcase_30 AC 9 ms
5,124 KB
testcase_31 AC 8 ms
5,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

class Prime {
private:
  vector<long long> div;
  
public:
  Prime(long long n = 0) {
    for (long long i = 0; i <= n; ++i) div.emplace_back(i);
    for (long long i = 2; i <= n / i; ++i) if (div[i] == i) {
      for (long long j = i * i; j <= n; j += i) div[j] = i;
    }
  }
  
  bool isPrime(long long n) const {
    if (n <= 1) return false;
    if (n < (long long)div.size()) return div[n] == n;
    for (long long i = 2; i <= n / i; ++i) if (n % i == 0) return false;
    return true;
  }
  
  vector<long long> factor(long long n) const {
    vector<long long> res;
    for (long long i = 2; i <= n / i && n >= (long long)div.size(); ++i) {
      while (n % i == 0) {
        res.emplace_back(i);
        n /= i;
      }
    }
    if (n >= max((long long)div.size(), 2ll)) {
      res.emplace_back(n);
    } else {
      while (n > 1) {
        res.emplace_back(div[n]);
        n /= div[n];
      }
    }
    sort(res.begin(), res.end());
    return res;
  }
  
  vector<long long> primeFactor(long long n) const {
    vector<long long> res;
    for (long long i = 2; i <= n / i && n >= (long long)div.size(); ++i) {
      if (n % i) continue;
      res.emplace_back(i);
      while (n % i == 0) n /= i;
    }
    if (n >= max((long long)div.size(), 2ll)) {
      res.emplace_back(n);
    } else {
      while (n > 1) {
        long long d = div[n];
        res.emplace_back(d);
        while (n % d == 0) n /= d;
      }
    }
    sort(res.begin(), res.end());
    return res;
  }

  vector<long long> divisor(long long n) const {
    vector<long long> res;
    for (long long i = 1; i <= n / i; ++i) {
      if (n % i == 0) {
        res.emplace_back(i);
        if (i != n / i) res.emplace_back(n / i);
      }
    }
    sort(res.begin(), res.end());
    return res;
  }
};

class DoublePointer {
private:
  int n;

protected:
  int front, back;

  virtual bool valid(int) = 0;
  virtual void pop(int) = 0;
  virtual void push(int) = 0;
  
public:
  DoublePointer(int n) : n(n) {}

  void solve() {
    for (front = 0, back = 0; front < n;) {
      if (back < n && valid(back)) {
        push(back);
        ++back;
      } else {
        if (front < back) pop(front);
        else ++back;
        ++front;
      }
    }
  }
};

class UniqueHash : public DoublePointer {
private:
  vector<int> v;
  set<int> s;

  bool valid(int back) {
    return s.count(v[back]) == 0;
  }

  void pop(int front) {
    s.erase(v[front]);
  }

  void push(int back) {
    s.insert(v[back]);
    if (mx <= s.size()) {
      mx = s.size();
      res = this->front;
    }
  }

public:
  size_t mx = 0, res;

  UniqueHash(const vector<int>& v) : DoublePointer(v.size()), v(v) {}
};

int main() {
  int k, n;
  cin >> k >> n;
  Prime prime(n);
  vector<int> p;
  for (int i = k; i <= n; ++i) {
    if (prime.isPrime(i)) p.emplace_back(i);
  }
  auto v = p;
  for (int& i : v) {
    while (i >= 10) {
      string s = to_string(i);
      i = accumulate(s.begin(), s.end(), 0) - '0' * s.size();
    }
  }
  UniqueHash uh(v);
  uh.solve();
  cout << p[uh.res] << endl;
}
0