結果

問題 No.551 夏休みの思い出(2)
ユーザー beetbeet
提出日時 2018-11-23 15:56:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,224 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 207,364 KB
実行使用メモリ 31,124 KB
最終ジャッジ日時 2023-08-26 04:21:25
合計ジャッジ時間 17,557 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
4,376 KB
testcase_01 AC 10 ms
4,376 KB
testcase_02 AC 10 ms
4,380 KB
testcase_03 AC 12 ms
4,380 KB
testcase_04 AC 14 ms
4,380 KB
testcase_05 AC 20 ms
4,380 KB
testcase_06 AC 24 ms
4,376 KB
testcase_07 AC 9 ms
4,376 KB
testcase_08 AC 10 ms
4,380 KB
testcase_09 AC 10 ms
4,376 KB
testcase_10 AC 10 ms
4,376 KB
testcase_11 AC 10 ms
4,376 KB
testcase_12 AC 10 ms
4,380 KB
testcase_13 AC 11 ms
4,380 KB
testcase_14 AC 10 ms
4,376 KB
testcase_15 AC 10 ms
4,376 KB
testcase_16 AC 10 ms
4,376 KB
testcase_17 AC 219 ms
15,192 KB
testcase_18 AC 328 ms
26,768 KB
testcase_19 AC 328 ms
26,972 KB
testcase_20 AC 356 ms
26,768 KB
testcase_21 AC 337 ms
26,868 KB
testcase_22 AC 127 ms
7,164 KB
testcase_23 AC 173 ms
11,236 KB
testcase_24 AC 332 ms
25,696 KB
testcase_25 AC 208 ms
14,744 KB
testcase_26 AC 310 ms
24,868 KB
testcase_27 AC 852 ms
27,080 KB
testcase_28 AC 789 ms
26,764 KB
testcase_29 AC 441 ms
26,756 KB
testcase_30 AC 715 ms
27,088 KB
testcase_31 AC 446 ms
26,856 KB
testcase_32 AC 696 ms
26,764 KB
testcase_33 AC 826 ms
26,948 KB
testcase_34 AC 628 ms
26,976 KB
testcase_35 AC 449 ms
27,088 KB
testcase_36 AC 555 ms
26,892 KB
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

Int MOD = 1000000007;
template<typename T>
struct Mint{
  T v;
  Mint():v(0){}
  Mint(signed v):v(v){}
  Mint(long long t){v=t%MOD;if(v<0) v+=MOD;}

  Mint pow(long long k){
    Mint res(1),tmp(v);
    while(k){
      if(k&1) res*=tmp;
      tmp*=tmp;
      k>>=1;
    }
    return res;
  }
  
  Mint inv(){return pow(MOD-2);}
  
  Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;}
  Mint& operator/=(Mint a){return (*this)*=a.inv();}
  
  Mint operator+(Mint a) const{return Mint(v)+=a;};
  Mint operator-(Mint a) const{return Mint(v)-=a;};
  Mint operator*(Mint a) const{return Mint(v)*=a;};
  Mint operator/(Mint a) const{return Mint(v)/=a;};

  Mint operator-(){return v?MOD-v:v;}

  bool operator==(const Mint a)const{return v==a.v;}
  bool operator!=(const Mint a)const{return v!=a.v;}
  bool operator <(const Mint a)const{return v <a.v;}

  // find x s.t. a^x = b
  static T log(Mint a,Mint b){
    static T sq = 500000;
    static map<Mint, T> dp;
    if(dp.empty()){
      Mint res(1);
      for(int r=0;r<sq;r++){
        if(!dp.count(res)) dp[res]=r;
        res*=a;
      }
    }
    static Mint p=a.inv().pow(sq);
    Mint res=b;
    for(int q=0;q<=MOD/sq+1;q++){
      if(dp.count(res)){
        T idx=q*sq+dp[res];
        if(idx>0) return idx;
      }
      res*=p;
    }    
    return T(-1);
  }
};
//INSERT ABOVE HERE
signed main(){
  using M = Mint<int>;
  int r;
  cin>>MOD>>r;
  M R(r);
  int q;
  cin>>q;
  for(int i=0;i<q;i++){
    int a,b,c;
    cin>>a>>b>>c;      
    M A(a),B(b),C(c);
    M D=(A.inv()*B*M(2).inv()).pow(2)-A.inv()*C;
    M E=-A.inv()*B*M(2).inv();
    if(D.v==0){
      cout<<E.v<<endl;
      continue;
    }
    int k=M::log(R,D);
    if(k&1){
      cout<<-1<<endl;
      continue;
    }
    M F=R.pow(k/2);      
    int x=(E+F).v,y=(E-F).v;
    if(x>y) swap(x,y);
    cout<<x<<" "<<y<<endl;
  }
  return 0;
}
0