結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー kiyoshi0205kiyoshi0205
提出日時 2021-01-23 17:05:25
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,874 ms / 2,000 ms
コード長 5,167 bytes
コンパイル時間 3,061 ms
コンパイル使用メモリ 197,564 KB
実行使用メモリ 55,480 KB
最終ジャッジ日時 2023-08-30 01:36:44
合計ジャッジ時間 47,385 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 4 ms
4,376 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 5 ms
4,380 KB
testcase_11 AC 4 ms
4,376 KB
testcase_12 AC 3 ms
4,376 KB
testcase_13 AC 4 ms
4,380 KB
testcase_14 AC 3 ms
4,376 KB
testcase_15 AC 7 ms
4,376 KB
testcase_16 AC 4 ms
4,376 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 67 ms
5,900 KB
testcase_19 AC 30 ms
4,380 KB
testcase_20 AC 83 ms
5,708 KB
testcase_21 AC 23 ms
5,132 KB
testcase_22 AC 41 ms
4,912 KB
testcase_23 AC 65 ms
5,712 KB
testcase_24 AC 56 ms
5,808 KB
testcase_25 AC 65 ms
5,612 KB
testcase_26 AC 71 ms
5,884 KB
testcase_27 AC 46 ms
4,996 KB
testcase_28 AC 646 ms
24,260 KB
testcase_29 AC 539 ms
19,376 KB
testcase_30 AC 439 ms
17,028 KB
testcase_31 AC 620 ms
25,996 KB
testcase_32 AC 849 ms
31,916 KB
testcase_33 AC 422 ms
17,232 KB
testcase_34 AC 757 ms
30,564 KB
testcase_35 AC 911 ms
27,372 KB
testcase_36 AC 1,383 ms
42,216 KB
testcase_37 AC 257 ms
15,516 KB
testcase_38 AC 691 ms
21,428 KB
testcase_39 AC 349 ms
14,940 KB
testcase_40 AC 489 ms
19,396 KB
testcase_41 AC 725 ms
25,840 KB
testcase_42 AC 1,212 ms
36,224 KB
testcase_43 AC 692 ms
23,792 KB
testcase_44 AC 859 ms
29,200 KB
testcase_45 AC 813 ms
23,956 KB
testcase_46 AC 795 ms
32,984 KB
testcase_47 AC 423 ms
16,640 KB
testcase_48 AC 1,649 ms
53,944 KB
testcase_49 AC 1,364 ms
53,868 KB
testcase_50 AC 1,671 ms
53,920 KB
testcase_51 AC 1,527 ms
55,480 KB
testcase_52 AC 1,517 ms
53,848 KB
testcase_53 AC 1,700 ms
53,604 KB
testcase_54 AC 1,669 ms
53,528 KB
testcase_55 AC 1,874 ms
53,424 KB
testcase_56 AC 1,680 ms
53,424 KB
testcase_57 AC 1,360 ms
53,576 KB
testcase_58 AC 729 ms
11,264 KB
testcase_59 AC 729 ms
11,356 KB
testcase_60 AC 686 ms
11,228 KB
testcase_61 AC 686 ms
11,132 KB
testcase_62 AC 686 ms
11,144 KB
testcase_63 AC 4 ms
4,380 KB
testcase_64 AC 5 ms
4,376 KB
testcase_65 AC 5 ms
4,376 KB
testcase_66 AC 5 ms
4,380 KB
testcase_67 AC 5 ms
4,376 KB
testcase_68 AC 2 ms
4,376 KB
testcase_69 AC 2 ms
4,380 KB
testcase_70 AC 1 ms
4,380 KB
testcase_71 AC 1 ms
4,376 KB
testcase_72 AC 1 ms
4,380 KB
testcase_73 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
// #include<ext/pb_ds/assoc_container.hpp>
// #include<ext/pb_ds/tree_policy.hpp>
// #include<ext/pb_ds/tag_and_trait.hpp>
// using namespace __gnu_pbds;
// #include<boost/multiprecision/cpp_int.hpp>
// namespace multiprecisioninteger = boost::multiprecision;
// using cint=multiprecisioninteger::cpp_int;
using namespace std;
using ll=long long;
#define double long double
using datas=pair<ll,ll>;
using ddatas=pair<double,double>;
using tdata=pair<ll,datas>;
using vec=vector<ll>;
using mat=vector<vec>;
using pvec=vector<datas>;
using pmat=vector<pvec>;
// using llset=tree<ll,null_type,less<ll>,rb_tree_tag,tree_order_statistics_node_update>;
#define For(i,a,b) for(i=a;i<(ll)b;++i)
#define bFor(i,b,a) for(i=b,--i;i>=(ll)a;--i)
#define rep(i,N) For(i,0,N)
#define rep1(i,N) For(i,1,N)
#define brep(i,N) bFor(i,N,0)
#define brep1(i,N) bFor(i,N,1)
#define all(v) (v).begin(),(v).end()
#define allr(v) (v).rbegin(),(v).rend()
#define vsort(v) sort(all(v))
#define vrsort(v) sort(allr(v))
#define uniq(v) vsort(v);(v).erase(unique(all(v)),(v).end())
#define endl "\n"
#define eb emplace_back
#define print(x) cout<<x<<endl
#define printyes print("Yes")
#define printno print("No")
#define printYES print("YES")
#define printNO print("NO")
#define output(v) do{bool f=0;for(auto outi:v){cout<<(f?" ":"")<<outi;f=1;}cout<<endl;}while(0)
#define matoutput(v) do{for(auto outimat:v)output(outimat);}while(0)
constexpr ll mod=1000000007;
// constexpr ll mod=998244353;
constexpr ll inf=1LL<<60;
constexpr double eps=1e-9;
const double PI=acos(-1);
template<class T,class E> ostream& operator<<(ostream& os,const pair<T,E>& p){return os<<"("<<p.first<<","<<p.second<<")";}
template<class T> ostream& operator<<(ostream& os,const vector<T>& v){
  os<<"{";bool f=false;
  for(auto& x:v){if(f)os<<",";os<<x;f=true;}
  os<<"}";
  return os;
}
template<class T> ostream& operator<<(ostream& os,const set<T>& v){
  os<<"{";bool f=false;
  for(auto& x:v){if(f)os<<",";os<<x;f=true;}
  os<<"}";
  return os;
}
template<class T> inline bool chmax(T& a,T b){bool x=a<b;if(x)a=b;return x;}
template<class T> inline bool chmin(T& a,T b){bool x=a>b;if(x)a=b;return x;}
#ifdef DEBUG
void debugg(){cout<<endl;}
template<class T,class... Args>void debugg(const T& x,const Args&... args){cout<<" "<<x;debugg(args...);}
#define debug(...) cout<<__LINE__<<" ["<<#__VA_ARGS__<<"]:",debugg(__VA_ARGS__)
#else
#define debug(...) (void(0))
#endif

void startupcpp(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout<<fixed<<setprecision(15);
}
int A,B,C,D,f[601];
ll N,za,zb;
int main(){
  startupcpp();
  ll i,j;
  cin>>A>>B>>C>>D>>N;
  vec pa,ma,pb,mb;
  map<int,pair<int,int>> mpa,mpb;
  rep(i,A)cin>>f[i];
  rep(i,B){
    int x;
    cin>>x;
    rep(j,A){
      mpa[x*f[j]]=pair<int,int>(f[j],x);
      if(x*f[j]>0)pa.emplace_back(x*f[j]);
      else if(x*f[j]<0)ma.emplace_back(-x*f[j]);
      else ++za;
    }
  }
  rep(i,C)cin>>f[i];
  rep(i,D){
    int x;
    cin>>x;
    rep(j,C){
      mpb[x*f[j]]=pair<int,int>(f[j],x);
      if(x*f[j]>0)pb.emplace_back(x*f[j]);
      else if(x*f[j]<0)mb.emplace_back(-x*f[j]);
      else ++zb;
    }
  }
  A=A*B;
  B=C*D;
  vsort(pa);vsort(pb);vsort(ma);vsort(mb);
  debug(za,zb,pa,pb,ma,mb);
  ll msize=(ll)pa.size()*mb.size()+(ll)pb.size()*ma.size();
  if(msize>=N){
    ll ok=0,ng=inf;
    while(ng-ok>1){
      ll mid=(ok+ng)/2,cnt=0;
      for(auto x:pa)cnt+=mb.end()-lower_bound(all(mb),(mid+x-1)/x);
      for(auto x:pb)cnt+=ma.end()-lower_bound(all(ma),(mid+x-1)/x);
      if(cnt<N)ng=mid;
      else ok=mid;
    }
    print(-ok);
    for(auto x:ma){
      if(ok%x)continue;
      if(mpb.count(ok/x)){
        print(mpa[-x].first<<" "<<mpa[-x].second<<" "<<mpb[ok/x].first<<" "<<mpb[ok/x].second);
        return 0;
      }
    }
    for(auto x:mb){
      if(ok%x)continue;
      if(mpa.count(ok/x)){
        print(mpa[ok/x].first<<" "<<mpa[ok/x].second<<" "<<mpb[-x].first<<" "<<mpb[-x].second);
        return 0;
      }
    }
  }else{
    N-=msize;
    ll zsize=A*zb+B*za-za*zb;
    if(zsize>=N){
      print(0);
      if(za){
        auto& x=mpb.begin()->second;
        print(mpa[0].first<<" "<<mpa[0].second<<" "<<x.first<<" "<<x.second);
      }else{
        auto& x=mpa.begin()->second;
        print(x.first<<" "<<x.second<<" "<<mpb[0].first<<" "<<mpb[0].second);
      }
    }else{
      N-=zsize;
      ll ok=inf,ng=0;
      while(ok-ng>1){
        ll mid=(ok+ng)/2,cnt=0;
        for(auto x:pa)cnt+=upper_bound(all(pb),mid/x)-pb.begin();
        for(auto x:ma)cnt+=upper_bound(all(mb),mid/x)-mb.begin();
        if(cnt<N)ng=mid;
        else ok=mid;
      }
      print(ok);
      for(auto x:pa){
        if(ok%x)continue;
        if(mpb.count(ok/x)){
          print(mpa[x].first<<" "<<mpa[x].second<<" "<<mpb[ok/x].first<<" "<<mpb[ok/x].second);
          return 0;
        }
      }
      for(auto x:ma){
        if(ok%x)continue;
        if(mpb.count(-ok/x)){
          print(mpa[-x].first<<" "<<mpa[-x].second<<" "<<mpb[-ok/x].first<<" "<<mpb[-ok/x].second);
          return 0;
        }
      }
    }
  }
}
0