結果

問題 No.910 素数部分列
ユーザー PachicobuePachicobue
提出日時 2019-10-18 22:26:58
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 3,629 bytes
コンパイル時間 3,708 ms
コンパイル使用メモリ 203,436 KB
実行使用メモリ 6,544 KB
最終ジャッジ日時 2023-09-08 04:30:56
合計ジャッジ時間 4,590 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 1 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 14 ms
4,500 KB
testcase_24 AC 14 ms
4,416 KB
testcase_25 AC 14 ms
4,732 KB
testcase_26 AC 14 ms
4,668 KB
testcase_27 AC 14 ms
4,628 KB
testcase_28 AC 15 ms
4,560 KB
testcase_29 AC 24 ms
5,172 KB
testcase_30 AC 26 ms
5,884 KB
testcase_31 AC 26 ms
5,492 KB
testcase_32 AC 25 ms
5,468 KB
testcase_33 AC 25 ms
5,688 KB
testcase_34 AC 26 ms
5,472 KB
testcase_35 AC 26 ms
5,428 KB
testcase_36 AC 26 ms
5,396 KB
testcase_37 AC 26 ms
5,580 KB
testcase_38 AC 26 ms
5,796 KB
testcase_39 AC 27 ms
5,540 KB
testcase_40 AC 26 ms
6,300 KB
testcase_41 AC 26 ms
5,792 KB
testcase_42 AC 26 ms
6,128 KB
testcase_43 AC 27 ms
6,544 KB
testcase_44 AC 26 ms
5,768 KB
testcase_45 AC 26 ms
5,884 KB
testcase_46 AC 25 ms
5,608 KB
testcase_47 AC 26 ms
5,608 KB
testcase_48 AC 9 ms
5,740 KB
testcase_49 AC 9 ms
5,712 KB
testcase_50 AC 9 ms
5,716 KB
testcase_51 AC 6 ms
4,380 KB
testcase_52 AC 24 ms
5,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wsign-conversion"

#define NDEBUG
using i32 = int32_t;
using i64 = int64_t;
using u32 = uint32_t;
using u64 = uint64_t;
using uint = unsigned int;
using usize = std::size_t;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return ((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};
template<typename T>
T read()
{
    T v;
    return std::cin >> v, v;
}
template<typename T>
std::vector<T> read_vec(const std::size_t size)
{
    std::vector<T> v(size);
    for (auto& e : v) { std::cin >> e; }
    return v;
}
template<typename... Types>
auto read_vals() { return std::tuple<std::decay_t<Types>...>{read<Types>()...}; }
#define SHOW(...) static_cast<void>(0)
template<typename T>
std::vector<T> make_v(const std::size_t size, T v) { return std::vector<T>(size, v); }
template<class... Args>
auto make_v(const std::size_t size, Args... args) { return std::vector<decltype(make_v(args...))>(size, make_v(args...)); }
int main()
{
    const auto n = read<usize>();
    const auto s = read<std::string>();
    std::string p;
    usize ans = 0;
    for (usize i = 0; i < n; i++) {
        if (s[i] == '3' or s[i] == '5' or s[i] == '7') {
            ans++;
        } else {
            p.push_back(s[i]);
        }
    }
    std::priority_queue<usize, std::vector<usize>, std::greater<usize>> oq, nq;
    int one = 0, nine = 0;
    for (usize i = 0; i < p.size(); i++) {
        if (p[i] == '1') { oq.push(i), one++; }
        if (p[i] == '9') { nq.push(i), nine++; }
    }
    while (not oq.empty() and not nq.empty()) {
        const usize o = oq.top();
        while (not nq.empty() and nq.top() < o) { nq.pop(); }
        if (nq.empty()) { break; }
        const usize n = nq.top();
        SHOW(o, n);
        oq.pop(), nq.pop(), ans++, one--, nine--;
    }
    SHOW(ans);
    const usize use = std::min(nine / 2, one);
    nine -= use * 2, one -= use, ans += use;
    std::cout << ans + one / 2 << std::endl;

    return 0;
}
0