結果

問題 No.5005 3-SAT
ユーザー trineutrontrineutron
提出日時 2022-03-28 19:07:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,941 bytes
コンパイル時間 1,848 ms
実行使用メモリ 6,952 KB
スコア 4,946
最終ジャッジ日時 2022-04-29 13:38:10
合計ジャッジ時間 210,116 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 1,999 ms
4,904 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,999 ms
4,904 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
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 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 TLE -
testcase_70 TLE -
testcase_71 TLE -
testcase_72 TLE -
testcase_73 TLE -
testcase_74 TLE -
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 TLE -
testcase_80 TLE -
testcase_81 TLE -
testcase_82 TLE -
testcase_83 TLE -
testcase_84 TLE -
testcase_85 TLE -
testcase_86 TLE -
testcase_87 TLE -
testcase_88 TLE -
testcase_89 AC 1,999 ms
4,900 KB
testcase_90 TLE -
testcase_91 TLE -
testcase_92 TLE -
testcase_93 TLE -
testcase_94 AC 1,999 ms
4,900 KB
testcase_95 TLE -
testcase_96 TLE -
testcase_97 TLE -
testcase_98 TLE -
testcase_99 AC 1,999 ms
6,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class xrand {
    uint64_t x;

   public:
    using result_type = uint32_t;
    static constexpr result_type min() {
        return numeric_limits<result_type>::min();
    }
    static constexpr result_type max() {
        return numeric_limits<result_type>::max();
    }
    xrand(uint64_t k) : x(k) {}
    xrand() : xrand(1) {}
    result_type operator()() {
        x ^= x << 9;
        x ^= x >> 7;
        return (x * 0x123456789abcdef) >> 32;
    }
};

constexpr int n = 256, len = 2048;
uint32_t a[len], b[len], c[len], a1[len], b1[len], c1[len];

xrand rng;
uniform_int_distribution dist(0, n - 1), dist2(0, 1);
uniform_real_distribution<double> d1(0, 1);

int calc_score(const bitset<n> &s) {
    for (int i = 0; i < len; i++) {
        if (s[a[i]] != a1[i] and s[b[i]] != b1[i] and s[c[i]] != c1[i]) {
            return i;
        }
    }
    return len;
}

int main() {
    const clock_t start = clock();
    for (int i = 0; i < len; i++) {
        cin >> a[i] >> b[i] >> c[i] >> a1[i] >> b1[i] >> c1[i];
    }
    bitset<n> best, s;
    int best_score = calc_score(best), prev_score = best_score, count = 0;
    constexpr double start_temp = 10, end_temp = 1;

    while (true) {
        const double phase = (clock() - start) / (1.99 * CLOCKS_PER_SEC);
        if (phase >= 1) break;
        const double temp = start_temp * pow(end_temp / start_temp, phase);
        const int idx = dist(rng);
        s.flip(idx);
        const int score = calc_score(s);
        const double prob = exp(min(0, score - prev_score) / temp);
        if (prob < 1 and d1(rng) >= prob) {
            s.flip(idx);
        } else {
            prev_score = score;
            if (score > best_score) {
                best_score = score;
                best = s;
            }
        }
        count++;
    }
    cout << best << endl;
    cerr << best_score << ' ' << count << endl;
    return 0;
}
0