結果

問題 No.670 log は定数
ユーザー merom686merom686
提出日時 2018-03-24 11:53:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 529 ms / 4,000 ms
コード長 1,326 bytes
コンパイル時間 761 ms
コンパイル使用メモリ 79,592 KB
実行使用メモリ 8,164 KB
最終ジャッジ日時 2024-06-25 02:45:09
合計ジャッジ時間 7,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 516 ms
8,088 KB
testcase_01 AC 529 ms
8,052 KB
testcase_02 AC 517 ms
8,100 KB
testcase_03 AC 523 ms
8,052 KB
testcase_04 AC 521 ms
8,132 KB
testcase_05 AC 526 ms
8,100 KB
testcase_06 AC 524 ms
8,088 KB
testcase_07 AC 516 ms
8,116 KB
testcase_08 AC 529 ms
8,164 KB
testcase_09 AC 515 ms
8,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;

using ll = long long;
using ull = unsigned long long;

ull seed;
int next() {
    seed = seed ^ (seed << 13);
    seed = seed ^ (seed >> 7);
    seed = seed ^ (seed << 17);
    return (seed >> 33);
}

int main() {
    int n, q;
    cin >> n >> q >> seed;

    for (int i = 0; i < 10000; i++) {
        next();
    }

    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        a[i] = next();
    }
    sort(a.begin(), a.end());

    constexpr int K = 20, L = 31 - K, M = 1 << K;
    vector<int> b(M + 1);
    //for (int j = 0; j < M; j++) {
    //    for (int i = b[j];; i++) {
    //        if (i >= n || a[i] >> L > j) {
    //            b[j + 1] = i;
    //            break;
    //        }
    //    }
    //}
    int j = 1;
    for (int i = 0; i < n; i++) {
        int j0 = a[i] >> L;
        while (j <= j0) b[j++] = i;
    }
    while (j <= M) b[j++] = n;

    ll r = 0;
    for (int h = 0; h < q; h++) {
        int x = next();
        int j = x >> L;
        for (int i = b[j];; i++) {
            if (i >= b[j + 1] || a[i] >= x) {
                r ^= (ll)i * h;
                break;
            }
        }
    }

    cout << r << endl;

    return 0;
}
0