結果

問題 No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩
ユーザー 👑 hitonanodehitonanode
提出日時 2021-01-22 23:23:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 6,782 bytes
コンパイル時間 2,485 ms
コンパイル使用メモリ 219,412 KB
実行使用メモリ 15,168 KB
最終ジャッジ日時 2023-08-27 22:42:03
合計ジャッジ時間 14,153 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 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,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 4 ms
4,376 KB
testcase_11 AC 4 ms
4,380 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 5 ms
4,376 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 7 ms
4,376 KB
testcase_16 AC 4 ms
4,376 KB
testcase_17 AC 5 ms
4,380 KB
testcase_18 AC 66 ms
4,572 KB
testcase_19 AC 26 ms
4,380 KB
testcase_20 AC 71 ms
4,380 KB
testcase_21 AC 19 ms
4,384 KB
testcase_22 AC 33 ms
4,380 KB
testcase_23 AC 50 ms
4,676 KB
testcase_24 AC 42 ms
4,480 KB
testcase_25 AC 48 ms
4,452 KB
testcase_26 AC 60 ms
4,672 KB
testcase_27 AC 39 ms
4,380 KB
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 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 42 ms
14,376 KB
testcase_64 AC 42 ms
14,312 KB
testcase_65 AC 41 ms
14,140 KB
testcase_66 AC 42 ms
14,136 KB
testcase_67 AC 41 ms
14,604 KB
testcase_68 AC 2 ms
4,384 KB
testcase_69 AC 1 ms
4,380 KB
testcase_70 AC 2 ms
4,380 KB
testcase_71 AC 2 ms
4,376 KB
testcase_72 AC 1 ms
4,376 KB
testcase_73 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
struct fast_ios { fast_ios(){ cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template <typename T, typename V>
void ndarray(vector<T>& vec, const V& val, int len) { vec.assign(len, val); }
template <typename T, typename V, typename... Args> void ndarray(vector<T>& vec, const V& val, int len, Args... args) { vec.resize(len), for_each(begin(vec), end(vec), [&](T& v) { ndarray(v, val, args...); }); }
template <typename T> bool chmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; }
template <typename T> bool chmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }
int floor_lg(long long x) { return x <= 0 ? -1 : 63 - __builtin_clzll(x); }
template <typename T1, typename T2> pair<T1, T2> operator+(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first + r.first, l.second + r.second); }
template <typename T1, typename T2> pair<T1, T2> operator-(const pair<T1, T2> &l, const pair<T1, T2> &r) { return make_pair(l.first - r.first, l.second - r.second); }
template <typename T> vector<T> sort_unique(vector<T> vec) { sort(vec.begin(), vec.end()), vec.erase(unique(vec.begin(), vec.end()), vec.end()); return vec; }
template <typename T> istream &operator>>(istream &is, vector<T> &vec) { for (auto &v : vec) is >> v; return is; }
template <typename T> ostream &operator<<(ostream &os, const vector<T> &vec) { os << '['; for (auto v : vec) os << v << ','; os << ']'; return os; }
template <typename T, size_t sz> ostream &operator<<(ostream &os, const array<T, sz> &arr) { os << '['; for (auto v : arr) os << v << ','; os << ']'; return os; }
#if __cplusplus >= 201703L
template <typename... T> istream &operator>>(istream &is, tuple<T...> &tpl) { std::apply([&is](auto &&... args) { ((is >> args), ...);}, tpl); return is; }
template <typename... T> ostream &operator<<(ostream &os, const tuple<T...> &tpl) { std::apply([&os](auto &&... args) { ((os << args << ','), ...);}, tpl); return os; }
#endif
template <typename T> ostream &operator<<(ostream &os, const deque<T> &vec) { os << "deq["; for (auto v : vec) os << v << ','; os << ']'; return os; }
template <typename T> ostream &operator<<(ostream &os, const set<T> &vec) { os << '{'; for (auto v : vec) os << v << ','; os << '}'; return os; }
template <typename T, typename TH> ostream &operator<<(ostream &os, const unordered_set<T, TH> &vec) { os << '{'; for (auto v : vec) os << v << ','; os << '}'; return os; }
template <typename T> ostream &operator<<(ostream &os, const multiset<T> &vec) { os << '{'; for (auto v : vec) os << v << ','; os << '}'; return os; }
template <typename T> ostream &operator<<(ostream &os, const unordered_multiset<T> &vec) { os << '{'; for (auto v : vec) os << v << ','; os << '}'; return os; }
template <typename T1, typename T2> ostream &operator<<(ostream &os, const pair<T1, T2> &pa) { os << '(' << pa.first << ',' << pa.second << ')'; return os; }
template <typename TK, typename TV> ostream &operator<<(ostream &os, const map<TK, TV> &mp) { os << '{'; for (auto v : mp) os << v.first << "=>" << v.second << ','; os << '}'; return os; }
template <typename TK, typename TV, typename TH> ostream &operator<<(ostream &os, const unordered_map<TK, TV, TH> &mp) { os << '{'; for (auto v : mp) os << v.first << "=>" << v.second << ','; os << '}'; return os; }
#ifdef HITONANODE_LOCAL
const string COLOR_RESET = "\033[0m", BRIGHT_GREEN = "\033[1;32m", BRIGHT_RED = "\033[1;31m", BRIGHT_CYAN = "\033[1;36m", NORMAL_CROSSED = "\033[0;9;37m", RED_BACKGROUND = "\033[1;41m", NORMAL_FAINT = "\033[0;2m";
#define dbg(x) cerr << BRIGHT_CYAN << #x << COLOR_RESET << " = " << (x) << NORMAL_FAINT << " (L" << __LINE__ << ") " << __FILE__ << COLOR_RESET << endl
#else
#define dbg(x) (x)
#endif

using tpl = tuple<lint, int, int>;
vector<tpl> gen(int N, int M) {
    vector<int> A(N), B(M);
    cin >> A >> B;
    vector<tpl> ret;
    ret.reserve(N * M);
    for (auto a : A) for (auto b : B) ret.emplace_back(a * b, a, b);
    sort(ret.begin(), ret.end());
    return ret;
}

int main() {
    int K, L, M, N, S;
    cin >> K >> L >> M >> N >> S;

    vector<tpl> v1 = gen(K, L);
    vector<tpl> v2 = gen(M, N);

    lint m1 = 0, m2 = 0;
    lint z1 = 0, z2 = 0;
    lint p1 = 0, p2 = 0;
    for (auto [v, ii, iii] : v1) m1 += v < 0, z1 += v == 0, p1 += v > 0;
    for (auto [v, ii, iii] : v2) m2 += v < 0, z2 += v == 0, p2 += v > 0;
    lint nls0 = m2 * p1 + m1 * p2;
    lint n0 = z1 * v2.size() + z2 * v1.size() - z1 * z2;

    vector<lint> rettmp(4);
    bool is_minus = false;
    vector<vector<tpl>> wa(2), wb(2);
    if (nls0 >= S) {
        is_minus = true;
        S = nls0 + 1 - S;
    } else if (nls0 + n0 >= S) {
        for (auto [v, ii, iii] : v1) rettmp[0] = ii, rettmp[1] = iii;
        for (auto [v, ii, iii] : v2) rettmp[2] = ii, rettmp[3] = iii;
        for (auto [v, ii, iii] : v1) if (!v) rettmp[0] = ii, rettmp[1] = iii;
        for (auto [v, ii, iii] : v2) if (!v) rettmp[2] = ii, rettmp[3] = iii;
        cout << "0\n";
        for (auto x : rettmp) cout << x << ' ';
        cout << '\n';
        return 0;
    } else {
        S -= nls0 + n0;
    }

    for (auto [v, ii, iii] : v1) if (v) (v > 0 ? wa[is_minus] : wa[1 ^ is_minus]).emplace_back(abs(v), ii, iii);
    for (auto [v, ii, iii] : v2) if (v) (v > 0 ? wb[0] : wb[1]).emplace_back(abs(v), ii, iii);

    for (auto &vec : wa) sort(vec.begin(), vec.end());
    for (auto &vec : wb) sort(vec.begin(), vec.end());

    lint lo = -1, hi = 1e18;

    auto search = [&](lint c) -> lint {
        lint cnt_less_c = 0;
        REP(d, 2) if (wb[d].size()) {
            for (auto [ab, a, b] : wa[d]) {
                auto itr = lower_bound(wb[d].begin(), wb[d].end(), tpl{(c + ab - 1) / ab, -1e18, -1e18});
                if (itr != wb[d].end()) {
                    auto [cd, ii, iii] = *(itr);
                    if (ab * cd == c) {
                        rettmp = {a, b, ii, iii};
                    }
                }
                int n = itr - wb[d].begin();
                cnt_less_c += n;
            }
        }
        return cnt_less_c;
    };

    while (hi - lo > 1) {
        const lint c = (lo + hi) / 2;
        lint cnt = search(c);
        (cnt >= S ? hi : lo) = c;
    }

    search(lo);
    cout << lo * (is_minus ? -1 : 1) << '\n';
    for (auto x : rettmp) cout << x << ' ';
    cout << '\n';
}
0