結果

問題 No.1460 Max of Min
ユーザー suzuken_wsuzuken_w
提出日時 2021-04-02 00:16:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 1,762 bytes
コンパイル時間 3,505 ms
コンパイル使用メモリ 221,164 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-12-21 07:42:12
合計ジャッジ時間 24,055 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,824 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 328 ms
11,128 KB
testcase_04 AC 344 ms
11,136 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 337 ms
11,132 KB
testcase_07 AC 344 ms
11,124 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 429 ms
11,008 KB
testcase_11 AC 335 ms
11,128 KB
testcase_12 AC 49 ms
6,820 KB
testcase_13 AC 274 ms
10,240 KB
testcase_14 AC 76 ms
6,816 KB
testcase_15 AC 34 ms
6,816 KB
testcase_16 AC 234 ms
9,984 KB
testcase_17 AC 134 ms
7,296 KB
testcase_18 AC 4 ms
6,820 KB
testcase_19 AC 112 ms
6,820 KB
testcase_20 AC 7 ms
6,820 KB
testcase_21 AC 15 ms
6,816 KB
testcase_22 AC 117 ms
6,912 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 147 ms
7,704 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 282 ms
10,752 KB
testcase_27 AC 36 ms
6,820 KB
testcase_28 AC 11 ms
6,820 KB
testcase_29 AC 136 ms
7,424 KB
testcase_30 AC 250 ms
10,240 KB
testcase_31 AC 117 ms
7,040 KB
testcase_32 AC 180 ms
9,464 KB
testcase_33 AC 58 ms
6,820 KB
testcase_34 AC 88 ms
6,816 KB
testcase_35 AC 30 ms
6,820 KB
testcase_36 AC 12 ms
6,816 KB
testcase_37 AC 114 ms
7,284 KB
testcase_38 AC 191 ms
9,856 KB
testcase_39 AC 61 ms
6,820 KB
testcase_40 AC 42 ms
6,820 KB
testcase_41 AC 31 ms
6,816 KB
testcase_42 AC 19 ms
6,820 KB
testcase_43 AC 100 ms
6,816 KB
testcase_44 AC 199 ms
9,212 KB
testcase_45 AC 7 ms
6,816 KB
testcase_46 AC 74 ms
6,816 KB
testcase_47 AC 111 ms
6,816 KB
testcase_48 AC 219 ms
9,728 KB
testcase_49 AC 145 ms
8,056 KB
testcase_50 AC 11 ms
6,816 KB
testcase_51 AC 107 ms
7,040 KB
testcase_52 AC 25 ms
6,820 KB
testcase_53 AC 119 ms
7,296 KB
testcase_54 AC 248 ms
11,008 KB
testcase_55 AC 254 ms
11,008 KB
testcase_56 AC 271 ms
11,008 KB
testcase_57 AC 266 ms
11,136 KB
testcase_58 AC 380 ms
11,008 KB
testcase_59 AC 269 ms
11,008 KB
testcase_60 AC 237 ms
11,008 KB
testcase_61 AC 241 ms
11,128 KB
testcase_62 AC 244 ms
11,008 KB
testcase_63 AC 228 ms
11,008 KB
testcase_64 AC 233 ms
11,008 KB
testcase_65 AC 274 ms
11,008 KB
testcase_66 AC 242 ms
11,136 KB
testcase_67 AC 225 ms
11,008 KB
testcase_68 AC 266 ms
11,124 KB
testcase_69 AC 274 ms
11,136 KB
testcase_70 AC 258 ms
11,128 KB
testcase_71 AC 242 ms
11,008 KB
testcase_72 AC 223 ms
11,008 KB
testcase_73 AC 237 ms
11,008 KB
testcase_74 AC 247 ms
11,000 KB
testcase_75 AC 248 ms
11,136 KB
testcase_76 AC 241 ms
10,880 KB
testcase_77 AC 253 ms
10,880 KB
testcase_78 AC 238 ms
11,008 KB
testcase_79 AC 277 ms
11,000 KB
testcase_80 AC 258 ms
10,880 KB
testcase_81 AC 243 ms
11,000 KB
testcase_82 AC 243 ms
10,880 KB
testcase_83 AC 240 ms
10,880 KB
testcase_84 AC 376 ms
10,752 KB
testcase_85 AC 363 ms
10,880 KB
testcase_86 AC 359 ms
10,880 KB
testcase_87 AC 340 ms
10,880 KB
testcase_88 AC 379 ms
10,880 KB
testcase_89 AC 374 ms
10,912 KB
testcase_90 AC 348 ms
10,752 KB
testcase_91 AC 344 ms
11,136 KB
testcase_92 AC 421 ms
11,008 KB
testcase_93 AC 372 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include<bits/stdc++.h> 
using namespace std;
using ll=long long;
using P=pair<ll,ll>;
template<class T> using V=vector<T>; 
#define fi first
#define se second
#define all(v) (v).begin(),(v).end()
const ll inf=(1e18);
//const ll mod=998244353;
const ll mod=1000000007;
const vector<int> dy={-1,0,1,0},dx={0,-1,0,1};
ll GCD(ll a,ll b) {return b ? GCD(b,a%b):a;}
ll LCM(ll c,ll d){return c/GCD(c,d)*d;}
struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(20);}} __init;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T>void debag(const vector<T> &a){cerr<<"debag :";for(auto v:a)cerr<<v<<" ";cerr<<"\n";}
template<class T>void print(const vector<T> &a){for(auto v:a)cout<<v<<" ";cout<<"\n";}
V<ll> add(V<ll> &x,V<ll> &d){
    int k=d.size();
    V<ll> ans(k);
    ans[0]=min(d[0],x[k-1]);
    for(int i=1;i<k;i++){
         ans[i]=max(x[i-1],min(d[i],x[k-1]));
    }
    return ans;
}
V<ll> mul(V<ll> &x,V<ll> &d){
    int k=d.size();
    V<V<ll>> nxt(k);
    nxt[0]=x;
    for(int i=1;i<k;i++){
       nxt[i]=add(nxt[i-1],d);
    }
    V<ll> ans(k,-2*inf);
    for(int i=0;i<k;i++){
       for(int j=0;j<k;j++){
            chmax(ans[j],min(nxt[i][j],x[i]));
       }
    }
    return ans;
}
int main(){
  ll k,n;
  cin>>k>>n;
  V<ll> a(k),b(k);
  for(int i=0;i<k;i++)cin>>a[i];
  for(int i=0;i<k;i++)cin>>b[i];
  V<ll> c(k,-2*inf);
  c[0]=2*inf;
  for(int i=60;i>=0;i--){
        c=mul(c,b);
        if(n&(1ll<<i)){
            c=add(c,b);
        }
  }
  ll ans=-2*inf;
  for(int i=0;i<k;i++){
       chmax(ans,min(a[i],c[i]));
  }
  cout<<ans<<"\n";
}
0