結果

問題 No.670 log は定数
ユーザー TsReaperTsReaper
提出日時 2018-03-26 20:32:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,058 ms / 4,000 ms
コード長 773 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 37,340 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-25 07:22:55
合計ジャッジ時間 32,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,058 ms
5,248 KB
testcase_01 AC 2,745 ms
5,376 KB
testcase_02 AC 2,883 ms
5,376 KB
testcase_03 AC 2,776 ms
5,376 KB
testcase_04 AC 2,853 ms
5,376 KB
testcase_05 AC 2,637 ms
5,376 KB
testcase_06 AC 2,768 ms
5,376 KB
testcase_07 AC 2,994 ms
5,376 KB
testcase_08 AC 2,833 ms
5,376 KB
testcase_09 AC 2,655 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:29:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   29 |     scanf("%d%d%llu",&n,&q,&seed);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
using namespace std;

int n,q,A[200010];
unsigned long long seed;
long long ans;

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

void step(int x,int &y,int v)
{
    while(y > 0 && A[y] >= x) y -= v;
    if(y < 0) y = 0;
    while(y < n && A[y+1] < x) y += v;
    if(y > n) y = n;
}

int main()
{
    int i,x,y,z;

    scanf("%d%d%llu",&n,&q,&seed);
    for(i=0;i<10000;i++) next();
    for(i=1;i<=n;i++) A[i] = next();
    sort(A+1,A+n+1);

    for(i=0;i<q;i++)
    {
        x = next();
        y = 1LL*x*n >> 31;
        if(y > n) y = n;
        step(x,y,15); step(x,y,1);
        ans ^= 1LL*i*y;
    }
    printf("%lld",ans);
    return 0;
}
0