結果

問題 No.814 ジジ抜き
ユーザー kyort0nkyort0n
提出日時 2019-04-12 22:44:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,159 bytes
コンパイル時間 1,670 ms
コンパイル使用メモリ 170,172 KB
実行使用メモリ 10,144 KB
最終ジャッジ日時 2024-09-14 20:53:14
合計ジャッジ時間 7,905 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 71 ms
5,376 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;

#define EPS (1e-7)
#define INF (1e9)
#define PI (acos(-1))
//const ll mod = 1000000007;

ll g(ll K, ll L, ll D) {
    L = (L >> D);
    cerr << bitset<60>(L) << endl;
    ll ret = 0;
    if(L % 2 == 1) {
        L--;
        ret = L;
        K++;
    }
    for(ll i = (K / 4) * 4; i < K; i++) {
        ret ^= (L + i);
    }
    cerr << bitset<60>(ret) << endl;
    return (ret << D);
}

ll f(ll K, ll L, ll D) {
    ll buf = g(K, L, D);
    cerr << bitset<60>(buf) << endl;
    ll mask = 0;
    for(int i = 0; i < D; i++) {
        mask = (mask << 1) | (ll)1;
    }
    cerr << "mask: " << bitset<60>(mask) << endl;
    if(K % 2 == 0) mask = 0;
    return buf | (mask & L);
}

int main() {
    //cout.precision(10);
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N;
    cin >> N;
    ll ans = 0;
    while(N--) {
        ll K, L, D;
        cin >> K >> L >> D;
        cerr << K << " " << L << " " << D << endl;
        ll val = f(K, L, D);
        cerr << bitset<60>(val) << endl;
        ans = ans ^ val;
    }
    cout << ans << endl;
    return 0;
}
0