結果

問題 No.97 最大の値を求めるくえり
ユーザー char134217728char134217728
提出日時 2019-02-21 02:43:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,182 ms / 5,000 ms
コード長 2,905 bytes
コンパイル時間 2,518 ms
コンパイル使用メモリ 170,524 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-04-26 04:21:26
合計ジャッジ時間 8,985 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 25 ms
6,656 KB
testcase_02 AC 241 ms
5,376 KB
testcase_03 AC 242 ms
5,376 KB
testcase_04 AC 21 ms
5,376 KB
testcase_05 AC 23 ms
5,376 KB
testcase_06 AC 25 ms
5,376 KB
testcase_07 AC 41 ms
5,376 KB
testcase_08 AC 62 ms
5,376 KB
testcase_09 AC 104 ms
5,376 KB
testcase_10 AC 189 ms
5,376 KB
testcase_11 AC 1,182 ms
5,376 KB
testcase_12 AC 986 ms
5,376 KB
testcase_13 AC 853 ms
5,376 KB
testcase_14 AC 535 ms
5,376 KB
testcase_15 AC 289 ms
5,376 KB
testcase_16 AC 193 ms
5,376 KB
testcase_17 AC 118 ms
5,888 KB
testcase_18 AC 114 ms
6,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:59:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   59 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
#include "unistd.h"
using namespace std;
#define WA cout<<"char134217728";exit(0)
#define RE throw
#define TLE sleep(1000)
#define FOR(i,a,b) for(int i=(a),i##formax=(b);i<i##formax;i++)
#define FORR(i,a,b) for(int i=(a),i##formax=(b);i>=i##formax;i--)
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pcnt __builtin_popcount
#define sz(x) (int)(x).size()
#define maxs(x,y) x=max(x,y)
#define mins(x,y) x=min(x,y)
#define show(x) cout<<#x<<" = "<<x<<endl;
#define all(a) (a.begin()),(a.end())
#define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++)
#define perm(c) sort(all(c));for(bool c##p=1;c##p;c##p=next_permutation(all(c)))
#define uniq(v) sort(all(v));v.erase(unique(all(v)), v.end());
#define bit(n) (1LL<<(n))
#define randInt(l,r) (uniform_int_distribution<ll>(l,r)(rnd))
#define randDouble(l,r) (uniform_real_distribution<double>(l,r)(rnd))
#define dout(d) printf("%.12f\n",d)

typedef long long ll;
typedef __int128_t lll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
template<class T>using V=vector<T>;
template<class T>using VV=V<V<T>>;
template<class T,class Y>ostream& operator<<(ostream& o,const pair<T,Y>& p){return o<<"("<<p.fi<<", "<<p.se<<")";}
template<typename A,size_t N,typename T>void Fill(A (&array)[N],const T&v){fill((T*)array,(T*)(array+N),v);}
lll gcd(lll a,lll b,lll &x,lll &y){if(!b){x=1;y=0;return a;}lll d=gcd(b,a%b,y,x);y-=a/b*x;return d;}
ll gcd(ll a,ll b){lll x=0,y=0;return gcd(a,b,x,y);}
ll modInv(ll a,ll m){lll x,y;gcd(a,m,x,y);return (x%m+m)%m;}
ll modPow(lll a,lll n,ll m){if(!a)return a;lll p=1;for(;n>0;n>>=1,a=a*a%m)if(n&1)p=p*a%m;return(ll)p;}
bool isPrime(ll n){if(n<2||n%2==0)return n==2;lll t=n-1,d=t/(t&-t);for(lll a:{2,325,9375,28178,450775,9780504,1795265022})if(a%n){for(t=d,a=modPow(a,t,n);t!=n-1&&a!=1&&a!=n-1;a=a*a%n,t=t*2%n);if(a!=n-1&&t%2==0)return 0;}return 1;}
const int IINF = 1e9+6;
const ll LINF = 1e18;
const int MOD = 100003;
const double PI = acos(-1);
const double EPS = 1e-10;
static random_device rd;
static mt19937 rnd(rd());

int N, Q;
set<int> A;
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() {
  FOR(i, 0, N) A.insert(xor128() % MOD);
}
main(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cin >> N >> Q;
  generateA();
  N = sz(A);
  FOR(_, 0, Q){
    ll q;
    cin >> q;
    if(!q){
      printf("0\n");
      continue;
    }
    if(N > 500){
      q = modInv(q, MOD);
      FORR(i, MOD-1, 1) if(A.count(q*i%MOD)){
        printf("%d\n", i);
        break;
      }
    }else{
      ll ma = 0;
      each(itr, A) maxs(ma, q**itr%MOD);
      printf("%d\n", ma);
    }
  }
}
0