結果

問題 No.97 最大の値を求めるくえり
ユーザー koba-e964koba-e964
提出日時 2015-07-28 17:11:20
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,649 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 53,776 KB
実行使用メモリ 9,220 KB
最終ジャッジ日時 2023-09-24 12:24:02
合計ジャッジ時間 12,819 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
4,380 KB
testcase_01 AC 9 ms
4,884 KB
testcase_02 AC 234 ms
4,496 KB
testcase_03 AC 161 ms
4,552 KB
testcase_04 AC 163 ms
4,580 KB
testcase_05 AC 167 ms
4,556 KB
testcase_06 AC 165 ms
4,488 KB
testcase_07 AC 174 ms
4,508 KB
testcase_08 AC 186 ms
4,556 KB
testcase_09 AC 208 ms
4,520 KB
testcase_10 AC 249 ms
4,664 KB
testcase_11 AC 289 ms
4,508 KB
testcase_12 AC 327 ms
4,472 KB
testcase_13 AC 365 ms
4,556 KB
testcase_14 AC 560 ms
4,564 KB
testcase_15 AC 1,161 ms
4,520 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;

unsigned xor128_x = 123456789, xor128_y = 362436069, xor128_z = 521288629, xor128_w = 88675123;
unsigned xor128() {
	unsigned t = xor128_x ^ (xor128_x << 11);
	xor128_x = xor128_y; xor128_y = xor128_z; xor128_z = xor128_w;
	return xor128_w = xor128_w ^ (xor128_w >> 19) ^ (t ^ (t >> 8));
}
void generateA(int N, int A[]) {
    for(int i = 0; i < N; ++ i)
        A[i] = xor128() % 100003;
}

const int M =100005;
int a[M];
int b[M];
int aset[M] = {};
int memo[M];
int imod[M];
const ll mod = 100003;

ll invmod(ll x) {
  ll e = mod - 2;
  ll sum = 1;
  ll cur = x;
  while (e > 0) {
    if (e % 2) {
      sum = sum * cur % mod;
    }
    cur = cur * cur % mod;
    e /= 2;
  }
  return sum;
}

ll solve(const int *as, int q) {
  ll s = mod - 1;
  while (1) {
    if (aset[(s * imod[q]) % mod]) {
      return s;
    }
    s--;
  }
}

int main(void){
  int n, q;
  cin >> n >> q;
  REP(i, 0, q) {
    cin >> b[i];
  }
  generateA(n, a);
  REP(i, 0, mod) {
    memo[i] = -1;
  }
  REP(i, 1, mod) {
    imod[i] = invmod(i);
  }
  if (n >= 10000) {
    REP(i, 0, n) {
      aset[a[i]] = 1;
    }
    REP(i, 0, q) {
      if (memo[b[i]] >= 0) {
	cout << memo[b[i]] << endl;
	continue;
      }
      memo[b[i]] = solve(aset, b[i]);
      cout << memo[b[i]] << endl;
    }
    return 0;
  }
  REP(i, 0, q) {
    if (memo[b[i]] >= 0) {
      cout << memo[b[i]] << endl;
      continue;
    }
    ll ma = 0;
    REP(j, 0, n) {
      ma = max(ma, ((ll)a[j] * (ll)b[i]) % mod);
    }
    cout << ma << endl;
    memo[b[i]] = ma;
  }
}
0