結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー firiexpfiriexp
提出日時 2021-01-22 23:48:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,482 bytes
コンパイル時間 1,167 ms
コンパイル使用メモリ 110,664 KB
実行使用メモリ 21,340 KB
最終ジャッジ日時 2023-08-27 23:35:59
合計ジャッジ時間 14,093 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 RE -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 RE -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 167 ms
17,704 KB
testcase_49 AC 116 ms
17,812 KB
testcase_50 AC 184 ms
18,072 KB
testcase_51 AC 148 ms
18,728 KB
testcase_52 AC 126 ms
18,600 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 RE -
testcase_58 AC 46 ms
15,952 KB
testcase_59 AC 47 ms
16,212 KB
testcase_60 AC 63 ms
15,468 KB
testcase_61 AC 63 ms
16,556 KB
testcase_62 AC 63 ms
15,904 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 AC 2 ms
4,376 KB
testcase_73 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

int main() {
    int a, b, c, d;
    ll s;
    cin >> a >> b >> c >> d >> s;
    vector<int> A(a), B(b), C(c), D(d);
    for (auto &&i : A) scanf("%d", &i);
    for (auto &&i : B) scanf("%d", &i);
    for (auto &&i : C) scanf("%d", &i);
    for (auto &&i : D) scanf("%d", &i);
    vector<ll> vp, up, vm, um;
    for (int i = 0; i < a; ++i) {
        for (int j = 0; j < b; ++j) {
            if(A[i]*B[j] >= 0) vp.emplace_back(A[i] * B[j]);
            else vm.emplace_back(A[i] * B[j]);
        }
    }
    for (int i = 0; i < c; ++i) {
        for (int j = 0; j < d; ++j) {
            if(C[i]*D[j] >= 0) up.emplace_back(C[i] * D[j]);
            else um.emplace_back(C[i] * D[j]);
        }
    }
    sort(vp.begin(),vp.end());
    sort(vm.begin(),vm.end());
    sort(up.begin(),up.end());
    sort(um.begin(),um.end());
    ll ok = INF<ll>, ng = -INF<ll>;
    while(ok-ng > 1){
        ll mid = (ok+ng)/2;
        if([&](ll x) -> bool{ // count v[i]*u[j] <= x
            ll cnt = 0;
            if(x >= 0){
                cnt += (ll)vp.size()*um.size()+(ll)up.size()*vm.size();
                int cur = 0;
                for (int i = (int)vp.size()-1; i >= 0; --i) { // v >= 0, u >= 0
                    while(cur < up.size() && up[cur]*vp[i] <= x) cur++;
                    cnt += cur;
                }
                cur = 0;
                for (int i = 0; i < vm.size(); ++i) { // v < 0, u < 0
                    while(cur > 0 && vm[i]*um[cur-1] <= x) cur--;
                    cnt += um.size()-cur;
                }
            }else {
                int cur = 0;
                for (int i = (int)vp.size()-1; i >= 0; --i) {
                    while(cur < um.size() && um[cur]*vp[i] <= x) cur++;
                    cnt += cur;
                }
                cur = 0;
                for (int i = (int)vm.size()-1; i >= 0; --i) {
                    while(cur < up.size() && up[cur]*vm[i] <= x) cur++;
                    cnt += cur;
                }
            }
            return cnt >= s;
        }(mid)) ok = mid;
        else ng = mid;
    }
    cout << ok << "\n";

    // 復元いる?
    ll ab = 0, cd = 0;
    for (auto &&i : vp) vm.emplace_back(i);
    for (auto &&i : up) um.emplace_back(i);
    if(ok == 0){
        exit(1);
        for (auto &&i : vm) {
            if(i == 0) ab = 0, cd = um[0];
        }
        for (auto &&i : um) {
            if(i == 0) ab = vm[0], cd = 0;
        }
    }else {
        for (auto &&i : vm) {
            if(i == 0 || ok%i) continue;
            auto x = lower_bound(um.begin(),um.end(), ok/i);
            if(x != um.end() && *x == ok/i) ab = i, cd = ok/i;
        }
    }
    for (int i = 0; i < a; ++i) {
        for (int j = 0; j < b; ++j) {
            if(A[i]*B[j] == ab){
                cout << A[i] << " " << B[j] << " ";
                i = a; j = b;
            }
        }
    }
    for (int i = 0; i < c; ++i) {
        for (int j = 0; j < d; ++j) {
            if(C[i]*D[j] == cd){
                cout << C[i] << " " << D[j] << "\n";
                i = c; j = d;
            }
        }
    }
    return 0;
}
0