結果

問題 No.670 log は定数
ユーザー merom686merom686
提出日時 2018-03-24 12:19:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 504 ms / 4,000 ms
コード長 1,139 bytes
コンパイル時間 769 ms
コンパイル使用メモリ 80,120 KB
実行使用メモリ 8,124 KB
最終ジャッジ日時 2024-06-25 02:45:18
合計ジャッジ時間 6,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
8,092 KB
testcase_01 AC 479 ms
8,044 KB
testcase_02 AC 487 ms
8,104 KB
testcase_03 AC 479 ms
8,040 KB
testcase_04 AC 486 ms
8,084 KB
testcase_05 AC 489 ms
8,052 KB
testcase_06 AC 499 ms
8,124 KB
testcase_07 AC 504 ms
7,992 KB
testcase_08 AC 486 ms
8,104 KB
testcase_09 AC 488 ms
8,112 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 + 1);
    for (int i = 0; i < n; i++) {
        a[i] = next();
    }
    sort(a.begin(), a.begin() + n);
    a[n] = (1U << 31) - 1;

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

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

    cout << r << endl;

    return 0;
}
0