結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー SSRSSSRS
提出日時 2021-01-22 22:18:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,966 bytes
コンパイル時間 1,682 ms
コンパイル使用メモリ 175,124 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-06-08 15:36:04
合計ジャッジ時間 64,792 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 94 ms
5,376 KB
testcase_19 AC 32 ms
5,376 KB
testcase_20 AC 108 ms
5,376 KB
testcase_21 AC 26 ms
5,376 KB
testcase_22 AC 35 ms
5,376 KB
testcase_23 AC 68 ms
5,376 KB
testcase_24 AC 44 ms
5,376 KB
testcase_25 AC 60 ms
5,376 KB
testcase_26 AC 81 ms
5,376 KB
testcase_27 AC 52 ms
5,376 KB
testcase_28 AC 804 ms
5,632 KB
testcase_29 AC 655 ms
5,376 KB
testcase_30 AC 673 ms
5,376 KB
testcase_31 AC 987 ms
5,632 KB
testcase_32 AC 624 ms
6,400 KB
testcase_33 AC 623 ms
5,376 KB
testcase_34 AC 884 ms
6,400 KB
testcase_35 AC 1,213 ms
6,016 KB
testcase_36 AC 1,806 ms
7,680 KB
testcase_37 AC 261 ms
5,376 KB
testcase_38 AC 995 ms
5,376 KB
testcase_39 AC 504 ms
5,376 KB
testcase_40 AC 626 ms
5,376 KB
testcase_41 AC 909 ms
5,760 KB
testcase_42 AC 1,988 ms
6,912 KB
testcase_43 AC 893 ms
5,504 KB
testcase_44 AC 1,311 ms
6,144 KB
testcase_45 AC 1,024 ms
5,504 KB
testcase_46 AC 953 ms
6,656 KB
testcase_47 AC 380 ms
5,376 KB
testcase_48 TLE -
testcase_49 AC 1,857 ms
8,832 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 1,824 ms
8,832 KB
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 AC 1,869 ms
8,832 KB
testcase_58 AC 1,638 ms
8,832 KB
testcase_59 AC 1,681 ms
8,832 KB
testcase_60 AC 1,772 ms
8,832 KB
testcase_61 AC 1,730 ms
8,704 KB
testcase_62 AC 1,656 ms
8,832 KB
testcase_63 AC 1,897 ms
8,832 KB
testcase_64 AC 1,763 ms
8,832 KB
testcase_65 AC 1,717 ms
8,832 KB
testcase_66 AC 1,729 ms
8,832 KB
testcase_67 AC 1,715 ms
8,832 KB
testcase_68 AC 2 ms
5,376 KB
testcase_69 AC 2 ms
5,376 KB
testcase_70 AC 2 ms
5,376 KB
testcase_71 AC 1 ms
5,376 KB
testcase_72 AC 2 ms
5,376 KB
testcase_73 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long INF = 1000000000000000000;
int main(){
  int K, L, M, N;
  long long S;
  cin >> K >> L >> M >> N >> S;
  vector<int> A(K);
  for (int i = 0; i < K; i++){
    cin >> A[i];
  }
  vector<int> B(L);
  for (int i = 0; i < L; i++){
    cin >> B[i];
  }
  vector<int> C(M);
  for (int i = 0; i < M; i++){
    cin >> C[i];
  }
  vector<int> D(N);
  for (int i = 0; i < N; i++){
    cin >> D[i];
  }
  vector<long long> X(K * L);
  for (int i = 0; i < K; i++){
    for (int j = 0; j < L; j++){
      X[i * L + j] = A[i] * B[j];
    }
  }
  vector<long long> Y(M * N);
  for (int i = 0; i < M; i++){
    for (int j = 0; j < N; j++){
      Y[i * N + j] = C[i] * D[j];
    }
  }
  sort(Y.begin(), Y.end());
  long long tv = -INF;
  long long fv = INF;
  while (fv - tv > 1){
    long long mid = (tv + fv) / 2;
    long long cnt = 0;
    for (int i = 0; i < K * L; i++){
      if (X[i] >= 0){
        int tv2 = -1;
        int fv2 = N * M;
        while (fv2 - tv2 > 1){
          int mid2 = (tv2 + fv2) / 2;
          if (X[i] * Y[mid2] < mid){
            tv2 = mid2;
          } else {
            fv2 = mid2;
          }
        }
        cnt += fv2;
      } else {
        int tv2 = N * M;
        int fv2 = -1;
        while (tv2 - fv2 > 1){
          int mid2 = (tv2 + fv2) / 2;
          if (X[i] * Y[mid2] < mid){
            tv2 = mid2;
          } else {
            fv2 = mid2;
          }
        }
        cnt += N * M - tv2;
      }
    }
    if (cnt < S){
      tv = mid;
    } else {
      fv = mid;
    }
  }
  cout << tv << endl;
  for (int i = 0; i < K * L; i++){
    int id = -1;
    if (X[i] >= 0){
      int tv2 = -1;
      int fv2 = N * M;
      while (fv2 - tv2 > 1){
        int mid2 = (tv2 + fv2) / 2;
        if (X[i] * Y[mid2] <= tv){
          tv2 = mid2;
        } else {
          fv2 = mid2;
        }
      }
      if (tv2 != -1){
        if (X[i] * Y[tv2] == tv){
          id = tv2;
        }
      }
    } else {
      int tv2 = N * M;
      int fv2 = -1;
      while (tv2 - fv2 > 1){
        int mid2 = (tv2 + fv2) / 2;
        if (X[i] * Y[mid2] <= tv){
          tv2 = mid2;
        } else {
          fv2 = mid2;
        }
      }
      if (tv2 != N * M){
        if (X[i] * Y[tv2] == tv){
          id = tv2;
        }
      }
    }
    if (id != -1){
      bool ok1 = false;
      for (int j = 0; j < K; j++){
        for (int k = 0; k < L; k++){
          if (A[j] * B[k] == X[i]){
            cout << A[j] << ' ' << B[k] << ' ';
            ok1 = true;
            break;
          }
        }
        if (ok1){
          break;
        }
      }
      bool ok2 = false;
      for (int j = 0; j < M; j++){
        for (int k = 0; k < N; k++){
          if (C[j] * D[k] == Y[id]){
            cout << C[j] << ' ' << D[k] << endl;
            ok2 = true;
            break;
          }
        }
        if (ok2){
          break;
        }
      }
      break;
    }
  }
}
0