結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー kiyoshi0205kiyoshi0205
提出日時 2021-01-23 17:03:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,162 bytes
コンパイル時間 3,597 ms
コンパイル使用メモリ 198,416 KB
実行使用メモリ 55,732 KB
最終ジャッジ日時 2023-08-30 01:33:34
合計ジャッジ時間 45,769 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 5 ms
4,380 KB
testcase_11 AC 4 ms
4,376 KB
testcase_12 AC 4 ms
4,376 KB
testcase_13 AC 4 ms
4,376 KB
testcase_14 AC 2 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,380 KB
testcase_18 AC 68 ms
6,128 KB
testcase_19 AC 30 ms
4,388 KB
testcase_20 AC 83 ms
6,016 KB
testcase_21 AC 24 ms
5,012 KB
testcase_22 AC 40 ms
5,092 KB
testcase_23 AC 64 ms
5,744 KB
testcase_24 AC 55 ms
5,704 KB
testcase_25 AC 64 ms
5,580 KB
testcase_26 AC 70 ms
5,812 KB
testcase_27 AC 45 ms
4,988 KB
testcase_28 AC 622 ms
24,256 KB
testcase_29 AC 534 ms
19,512 KB
testcase_30 AC 433 ms
17,080 KB
testcase_31 AC 615 ms
25,752 KB
testcase_32 AC 847 ms
31,980 KB
testcase_33 AC 410 ms
17,524 KB
testcase_34 AC 732 ms
30,540 KB
testcase_35 AC 890 ms
27,512 KB
testcase_36 AC 1,348 ms
42,300 KB
testcase_37 AC 249 ms
15,380 KB
testcase_38 AC 677 ms
21,424 KB
testcase_39 AC 340 ms
14,840 KB
testcase_40 AC 474 ms
19,360 KB
testcase_41 AC 713 ms
25,712 KB
testcase_42 AC 1,202 ms
36,208 KB
testcase_43 AC 689 ms
23,724 KB
testcase_44 AC 832 ms
29,000 KB
testcase_45 AC 803 ms
24,244 KB
testcase_46 AC 788 ms
33,056 KB
testcase_47 AC 415 ms
16,548 KB
testcase_48 AC 1,616 ms
54,432 KB
testcase_49 AC 1,350 ms
53,704 KB
testcase_50 AC 1,662 ms
53,976 KB
testcase_51 AC 1,525 ms
55,732 KB
testcase_52 AC 1,470 ms
55,456 KB
testcase_53 AC 1,696 ms
53,548 KB
testcase_54 AC 1,651 ms
53,492 KB
testcase_55 AC 1,863 ms
53,552 KB
testcase_56 AC 1,674 ms
53,432 KB
testcase_57 AC 1,352 ms
53,552 KB
testcase_58 AC 724 ms
11,176 KB
testcase_59 AC 722 ms
11,132 KB
testcase_60 AC 676 ms
11,240 KB
testcase_61 AC 677 ms
11,116 KB
testcase_62 AC 680 ms
11,404 KB
testcase_63 AC 4 ms
4,376 KB
testcase_64 AC 4 ms
4,376 KB
testcase_65 AC 4 ms
4,376 KB
testcase_66 AC 4 ms
4,380 KB
testcase_67 AC 4 ms
4,380 KB
testcase_68 AC 1 ms
4,380 KB
testcase_69 AC 2 ms
4,376 KB
testcase_70 WA -
testcase_71 WA -
testcase_72 AC 2 ms
4,380 KB
testcase_73 AC 1 ms
4,380 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