結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー vkgainzvkgainz
提出日時 2021-06-12 10:11:52
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,682 bytes
コンパイル時間 2,384 ms
コンパイル使用メモリ 164,224 KB
実行使用メモリ 54,692 KB
最終ジャッジ日時 2024-12-16 02:33:49
合計ジャッジ時間 81,591 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
24,612 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 1 ms
35,748 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
31,268 KB
testcase_06 AC 2 ms
13,640 KB
testcase_07 AC 1 ms
44,832 KB
testcase_08 AC 4 ms
13,640 KB
testcase_09 AC 3 ms
26,272 KB
testcase_10 AC 7 ms
13,636 KB
testcase_11 AC 5 ms
30,116 KB
testcase_12 AC 3 ms
13,636 KB
testcase_13 AC 8 ms
39,588 KB
testcase_14 AC 3 ms
13,636 KB
testcase_15 AC 11 ms
13,640 KB
testcase_16 AC 5 ms
13,636 KB
testcase_17 AC 8 ms
32,808 KB
testcase_18 AC 171 ms
13,636 KB
testcase_19 AC 59 ms
6,820 KB
testcase_20 AC 186 ms
6,816 KB
testcase_21 AC 33 ms
6,820 KB
testcase_22 AC 67 ms
6,820 KB
testcase_23 AC 119 ms
6,816 KB
testcase_24 AC 104 ms
6,824 KB
testcase_25 AC 113 ms
6,820 KB
testcase_26 AC 157 ms
6,820 KB
testcase_27 AC 102 ms
6,816 KB
testcase_28 RE -
testcase_29 TLE -
testcase_30 AC 1,487 ms
15,744 KB
testcase_31 AC 1,802 ms
22,784 KB
testcase_32 TLE -
testcase_33 AC 1,231 ms
16,256 KB
testcase_34 AC 1,718 ms
27,648 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 512 ms
14,464 KB
testcase_38 TLE -
testcase_39 AC 1,156 ms
13,696 KB
testcase_40 AC 1,249 ms
18,048 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 1,447 ms
15,360 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 AC 306 ms
6,816 KB
testcase_59 AC 298 ms
6,820 KB
testcase_60 AC 312 ms
6,820 KB
testcase_61 AC 314 ms
6,816 KB
testcase_62 AC 312 ms
6,820 KB
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 AC 2 ms
6,816 KB
testcase_71 AC 1 ms
6,816 KB
testcase_72 AC 2 ms
6,820 KB
testcase_73 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void read(vector<int> &v, int sz) {
    for(int i = 0; i < sz; i++) {
        cin >> v[i];
    }
}

long long get_floor(long long lo, long long hi) {
    long long x = (lo + hi);
    if(abs(x) % 2 == 0) return x / 2;
    if(x > 0) return x / 2;
    return (x - 1) / 2;
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int K, L, M, N;
    long long S;
    cin >> K >> L >> M >> N >> S;
    vector<int> A(K), B(L), C(M), D(N);
    read(A, K);
    read(B, L);
    read(C, M);
    read(D, N);
    map<long long, int> fl, fr;
    for(int i = 0; i < K; i++)
        for(int j = 0; j < L; j++)
            ++fl[A[i] * B[j]];
    for(int i = 0; i < M; i++)
        for(int j = 0; j < N; j++)
            ++fr[C[i] * D[j]];
    int sum = 0;
    for(auto [a, b] : fr) {
        sum += b;
        fr[a] = sum;
    }
    long long T;
    long long lo = -1e18, hi = 1e18;
    for(int j = 0; j < 62; j++) {
        long long mid = get_floor(lo, hi);
        long long num = 0LL;
        for(int x = 0; x < K; x++) {
            for(int y = 0; y < L; y++) {
                int a = A[x] * B[y];
                if(a > 0) {
                    long long look = mid / a;
                    if(mid < 0) look = (mid - a + 1) / a;
                    auto it = fr.upper_bound(look);
                    if(it == fr.begin()) continue;
                    --it;
                    num += it->second;
                }
                else if(a < 0) {
                    long long look;
                    if(mid > 0) look = - (mid / (- a));
                    else look = (-mid - a - 1) / (-a);
                    auto it = fr.lower_bound(look);
                    num += sum;
                    if(it == fr.begin()) continue;
                    --it;
                    num -= it->second;
                }
                else {
                   if(mid >= 0) num += sum;
                }
            }
        }
        if(num < S) lo = mid + 1;
        else hi = mid;
    }
    T = lo;
    long long left = 0LL, right = 0LL;
    pair<int, int> x, y;
    for(auto [a, b] : fl) {
        if(T % a == 0 && fr.find(T / a) != fr.end())
            left = a, right = T / a;
    }
    for(int i = 0; i < K; i++) {
        for(int j = 0; j < L; j++) {
            if(A[i] * 1LL * B[j] == left)
                x = {A[i], B[j]};
        }
    }
    for(int i = 0; i < M; i++) {
        for(int j = 0; j < N; j++) {
            if(C[i] * 1LL * D[j] == right)
                y = {C[i], D[j]};
        }
    }
    cout << T << "\n";
    cout << x.first << " " << x.second << " " << y.first << " " << y.second << "\n";
}
0