結果

問題 No.1460 Max of Min
ユーザー 沙耶花沙耶花
提出日時 2021-03-31 22:55:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 4,071 bytes
コンパイル時間 4,260 ms
コンパイル使用メモリ 267,244 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-09 09:38:56
合計ジャッジ時間 7,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
testcase_92 -- -
testcase_93 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000000000000001


template<typename T>
struct Kitamasa{
  const int k;
  const vector<T> a, c;
  Kitamasa(const vector<T> &a, const vector<T> &c): k(a.size()), a(a), c(c) {}
 
  T solve(long long n){
    T res = 0;
    auto d = cal(n);
    for(int i = 0; i < k; i++) res += d[i] * a[i];
    return res;
  }
 
private:
  vector<T> p1(const vector<T> &x){
    /*
    a_n = sum(x_i * a_i)
    のとき、
    a_n+1 = sum(y_i * a_i)
    となるyを求める
    a_n+1 
    = sum(x_i * a_i+1)
    = sum(x_i * a_i+1) + x_k-1*a_k
    = sum(x_i * a_i+1) + x_k-1*sum(c_i * a_i)
    //*/
    vector<T> res(k);
    res[0] = x[k-1] * c[0];
    for(int i = 1; i < k; i++){
      res[i] = x[i-1] + (x[k-1] * c[i]);
    }
    return res;
  }
 
  vector<T> sq(const vector<T> &x){
    /*
    a_n = sum(x_i * a_i)
    のとき、
    a_2n = sum(y_i * a_i)
    となるyを求める
    a_2n = sum(x_i * a_n+i)
    
    ここで、
    f(n) = x, f(n+1) = p1(f(n)), ... , f(n+k-1)
    が列挙できたとすると
    a_n+i = sum(f(n+i)_j * a_j)
    となる よって、
    a_2n = sum(x_i*sum(f(n+i)_j * a_j))
 
    //*/
    vector<T> res(k);
    auto d = x;
    for(int i = 0; i < k; i++){
      for(int j = 0; j < k; j++){
        res[j] += x[i] * d[j];
      }
      d = p1(d);
    }
 
    return res;
  }
 
  vector<T> cal(long long n){
    vector<T> res(k); res[0] = 1;
    
    for(int i = 62; i >= 0; i--){
      res = sq(res);
      if(n & (1ll << i)) res = p1(res);
    }
    return res;
  }
};
 
template< int mod >
struct ModInt {
  int x;
 
  ModInt() : x(0) {}
 
  ModInt(int64_t y) : x(y >= 0 ? y % mod : (mod - (-y) % mod) % mod) {}
  
  ModInt &operator+=(const ModInt &p) {
	  x |= p.x;
    return *this;
  }
  ModInt &operator-=(const ModInt &p) {
    if((x += mod - p.x) >= mod) x -= mod;
    return *this;
  }
  ModInt &operator*=(const ModInt &p) {
	 x &= p.x;
    return *this;
  }
  ModInt &operator/=(const ModInt &p) {
    *this *= p.inverse();
    return *this;
  }
  ModInt operator-() const { return ModInt(-x); }
  ModInt operator+(const ModInt &p) const { return ModInt(*this) += p; }
  ModInt operator-(const ModInt &p) const { return ModInt(*this) -= p; }
  ModInt operator*(const ModInt &p) const { return ModInt(*this) *= p; }
  ModInt operator/(const ModInt &p) const { return ModInt(*this) /= p; }
  bool operator==(const ModInt &p) const { return x == p.x; }
  bool operator!=(const ModInt &p) const { return x != p.x; }
 
  ModInt inverse() const {
    int a = x, b = mod, u = 1, v = 0, t;
    while(b > 0) {
      t = a / b;
      swap(a -= t * b, b);
      swap(u -= t * v, v);
    }
    return ModInt(u);
  }
  ModInt pow(int64_t n) const {
    ModInt ret(1), mul(x);
    while(n > 0) {
      if(n & 1) ret *= mul;
      mul *= mul;
      n >>= 1;
    }
    return ret;
  }
  friend ostream &operator<<(ostream &os, const ModInt &p) {
    return os << p.x;
  }
  friend istream &operator>>(istream &is, ModInt &a) {
    int64_t t;
    is >> t;
    a = ModInt< mod >(t);
    return (is);
  }
  static int get_mod() { return mod; }
};
constexpr int MOD = 2;
using mint = ModInt< MOD >;
using VM = vector<mint>;
using VVM = vector<VM>;
 
int solve(long long nn,long long kk,vector<long long> aa,vector<long long> bb){
  int k = kk; long long n=  nn;
  
  VM a(k, 1), c(k, 1);
  rep(i,k){
	  a[i] = aa[i];
	  c[i] = bb[i];
  }
 
  Kitamasa kita(a, c);
  return kita.solve(n).x;
}

int main(){
	
int K;
long long N;
	cin>>K>>N;
	
	vector<long long> A(K),B(K);
	
	rep(i,K){
		cin>>A[i];
	}
	rep(i,K){
		cin>>B[i];
	}
	
	long long ok = -Inf,ng = Inf;
	while(ng-ok>1LL){
		long long mid = (ok+ng)/2;
		vector<long long> a(K),b(K);
		rep(i,K){
			if(A[i]<mid){
				a[i] = 0;
			}
			else{
				a[i] = 1;
			}
			if(B[i]<mid){
				b[i] = 0;
			}
			else{
				b[i] = 1;
			}
		}
		
		if(solve(N,K,a,b)==1)ok = mid;
		else ng = mid;
	}
	
	
	cout<<ok<<endl;
	
    return 0;
}
0