結果

問題 No.670 log は定数
ユーザー maspymaspy
提出日時 2020-04-24 01:20:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 412 ms / 4,000 ms
コード長 1,028 bytes
コンパイル時間 693 ms
コンパイル使用メモリ 78,916 KB
実行使用メモリ 8,532 KB
最終ジャッジ日時 2024-10-14 09:54:09
合計ジャッジ時間 5,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
8,360 KB
testcase_01 AC 411 ms
8,292 KB
testcase_02 AC 412 ms
8,296 KB
testcase_03 AC 409 ms
8,316 KB
testcase_04 AC 406 ms
8,408 KB
testcase_05 AC 395 ms
8,380 KB
testcase_06 AC 400 ms
8,532 KB
testcase_07 AC 408 ms
8,284 KB
testcase_08 AC 403 ms
8,344 KB
testcase_09 AC 399 ms
8,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
using ll = long long;
using ull = unsigned long long;

uint a[200010];
int memo[1048580];
int n, q;

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

void make_memo()
{
    for (int i = 0; i < n; i++)
    {
        memo[1+(a[i] >> 11)]++;
    }
    for (int i = 1; i < 1048580; i++)
    {
        memo[i] += memo[i - 1];
    }
}

int solve(ull x)
{
    int i = memo[x >> 11];
    int before = i;
    while (a[i] < x)
    {
        i++;
    }
    return i;
}

int main()
{
    cin >> n >> q >> seed;
    for (int i = 0; i < 10000; i++)
        next();

    for (int i = 0; i < n; i++)
        a[i] = next();

    a[n] = (1ULL << 31);

    sort(a, a + n);

    make_memo();
    ll sm = 0;
    for (int i = 0; i < q; i++)
    {
        int x = next();
        int cnt = solve(x);
        sm ^= ll(cnt) * i;
    }
    cout << sm << endl;
    return 0;
}
0