結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー fastmathfastmath
提出日時 2021-01-22 22:29:16
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 3,514 bytes
コンパイル時間 3,463 ms
コンパイル使用メモリ 216,108 KB
実行使用メモリ 50,972 KB
最終ジャッジ日時 2024-12-28 02:58:02
合計ジャッジ時間 85,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
28,660 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 2 ms
30,064 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
43,260 KB
testcase_06 AC 3 ms
10,496 KB
testcase_07 AC 2 ms
13,768 KB
testcase_08 AC 6 ms
10,496 KB
testcase_09 AC 4 ms
31,348 KB
testcase_10 AC 8 ms
10,496 KB
testcase_11 AC 8 ms
24,824 KB
testcase_12 AC 5 ms
10,496 KB
testcase_13 AC 10 ms
50,940 KB
testcase_14 AC 3 ms
10,496 KB
testcase_15 AC 12 ms
50,816 KB
testcase_16 AC 6 ms
10,496 KB
testcase_17 AC 10 ms
50,940 KB
testcase_18 AC 178 ms
11,120 KB
testcase_19 AC 55 ms
50,944 KB
testcase_20 AC 173 ms
10,804 KB
testcase_21 AC 41 ms
50,812 KB
testcase_22 AC 65 ms
10,624 KB
testcase_23 AC 113 ms
50,972 KB
testcase_24 AC 87 ms
6,816 KB
testcase_25 AC 103 ms
6,820 KB
testcase_26 AC 142 ms
6,824 KB
testcase_27 AC 83 ms
6,816 KB
testcase_28 AC 1,342 ms
23,780 KB
testcase_29 AC 1,111 ms
16,288 KB
testcase_30 AC 1,012 ms
15,964 KB
testcase_31 AC 1,580 ms
25,316 KB
testcase_32 AC 1,002 ms
31,276 KB
testcase_33 AC 937 ms
15,920 KB
testcase_34 AC 1,516 ms
26,084 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 461 ms
13,064 KB
testcase_38 AC 1,645 ms
19,660 KB
testcase_39 AC 792 ms
14,516 KB
testcase_40 AC 1,032 ms
16,416 KB
testcase_41 AC 1,688 ms
22,464 KB
testcase_42 TLE -
testcase_43 AC 1,401 ms
24,212 KB
testcase_44 TLE -
testcase_45 AC 1,721 ms
21,004 KB
testcase_46 AC 1,688 ms
28,132 KB
testcase_47 AC 760 ms
14,060 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 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 AC 179 ms
45,952 KB
testcase_64 AC 184 ms
46,076 KB
testcase_65 AC 182 ms
45,820 KB
testcase_66 AC 182 ms
45,952 KB
testcase_67 AC 180 ms
46,080 KB
testcase_68 AC 3 ms
5,248 KB
testcase_69 AC 2 ms
5,248 KB
testcase_70 AC 2 ms
5,248 KB
testcase_71 AC 3 ms
5,248 KB
testcase_72 AC 2 ms
5,248 KB
testcase_73 AC 2 ms
50,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ii pair <int, int>
#define app push_back
#define all(a) a.begin(), a.end()
#define bp __builtin_popcountll
#define ll long long
#define mp make_pair
#define x first
#define y second
#define Time (double)clock()/CLOCKS_PER_SEC
#define debug(x) std::cout << #x << ": " << x << '\n';
#define FOR(i, n) for (int i = 0; i < n; ++i)
#define pb push_back
#define trav(a, x) for (auto& a : x)
using vi = vector<int>;
template <typename T>
std::ostream& operator <<(std::ostream& output, const pair <T, T> & data)
{
    output << "(" << data.x << "," << data.y << ")";
    return output;
}
template <typename T>
std::ostream& operator <<(std::ostream& output, const std::vector<T>& data)
{
    for (const T& x : data)
        output << x << " ";
    return output;
}
ll div_up(ll a, ll b) { return a/b+((a^b)>0&&a%b); } // divide a by b rounded up
ll div_down(ll a, ll b) { return a/b-((a^b)<0&&a%b); } // divide a by b rounded down 
#define tcT template<class T
#define tcTU tcT, class U
tcT> using V = vector<T>; 
tcT> void re(V<T>& x) { 
    trav(a, x)
        cin >> a;
}
tcT> bool ckmin(T& a, const T& b) {
    return b < a ? a = b, 1 : 0; 
} // set a = min(a,b)
tcT> bool ckmax(T& a, const T& b) {
    return a < b ? a = b, 1 : 0; 
}
signed main() {
    #ifdef HOME
    freopen("input.txt", "r", stdin);
    #else
    #define endl '\n'
    ios_base::sync_with_stdio(0); cin.tie(0);
    #endif

    vi sz(4);
    FOR (i, 4)
        cin >> sz[i];
    int k;
    cin >> k;
    V <vi> a(4);
    FOR (i, 4) {
        a[i].resize(sz[i]);
        re(a[i]);
    }   

    V <vi> l, r;
    trav (i, a[0])
        trav (j, a[1])
            l.app({i * j, i, j});
    sort(all(l));
    trav (i, a[2])
        trav (j, a[3])
            r.app({i * j, i, j});
    sort(all(r));
        
    const int INF = 2e18;

    auto get_left = [&] (V <vi> &a, int x) {
        vi key = {x, INF, INF};
        return upper_bound(all(a), key) - a.begin();
    };  
    auto get_right = [&] (V <vi> &a, int x) {
        return (int)a.size() - get_left(a, x - 1);
    };  

    auto cnt = [&] (int x) {
        //prod <= x
        int ans = 0;
        trav (v, l) {
            int a = v[0];
            if (a == 0) {
                if (0 <= x)
                    ans += r.size();
            }   
            else if (a < 0) {
                //a * b <= x
                //b >= x/a
                ans += get_right(r, div_up(x, a));
            }   
            else {
                //b <= x/a
                ans += get_left(r, div_down(x, a));
            }   
        }   
        return ans;
    };  

    int ans;
    {
    int l = -INF, r = INF; // l < ans
    while (l < r - 1) {
        int m = (l + r) >> 1;
        if (cnt(m) < k)
            l = m;
        else
            r = m;
    }   
    ans = r;
    cout << r << endl;
    }

    trav (v, l) {
        int a = v[0];

        if (ans == 0 && a == 0) {
            auto vv = r[0];
            cout << v[1] << ' ' << v[2] << ' ' << vv[1] << ' ' << vv[2] << endl;
            exit(0);
        }   
        
        if (a && ans % a == 0) {
            int b = ans/a;
            vi key = {b, -INF, -INF};
            auto t = lower_bound(all(r), key);
            if (t != r.end() && (*t)[0] == b) {
                auto vv = *t;
                cout << v[1] << ' ' << v[2] << ' ' << vv[1] << ' ' << vv[2] << endl;
                exit(0);
            }   
        }   
    }       
    assert(0);
}
0