結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー y_mazuny_mazun
提出日時 2015-04-17 01:50:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 42,624 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 11:15:55
合計ジャッジ時間 2,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 37 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 28 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 43 ms
5,376 KB
testcase_13 AC 44 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 47 ms
5,376 KB
testcase_16 AC 41 ms
5,376 KB
testcase_17 AC 44 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 13 ms
5,376 KB
testcase_21 AC 48 ms
5,376 KB
testcase_22 AC 51 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 31 ms
5,376 KB
testcase_29 AC 43 ms
5,376 KB
testcase_30 AC 36 ms
5,376 KB
testcase_31 AC 32 ms
5,376 KB
testcase_32 AC 38 ms
5,376 KB
testcase_33 AC 48 ms
5,376 KB
testcase_34 AC 48 ms
5,376 KB
testcase_35 AC 50 ms
5,376 KB
testcase_36 AC 47 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:24:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |   REP(i,n) scanf("%lld", &a[i]);
      |            ~~~~~^~~~~~~~~~~~~~~
main.cpp: In function ‘int getInt()’:
main.cpp:7:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 | inline int getInt(){ int s; scanf("%d", &s); return s; }
      |                             ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <queue>
typedef long long ll;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

#include <cstdio>
inline int getInt(){ int s; scanf("%d", &s); return s; }

#include <set>

using namespace std;

/*
y1 = x00 * x0 + x10 * x1 + ... + xn0 * xn
y2 = x01 * x0 + x11 * x1 + ... + xn1 * xn
...
yk = x0k * x0 + x1k * x1 + ... + xnk * xn

 */

int main(){
  const int n = getInt();
  vector<ll> a(n);
  REP(i,n) scanf("%lld", &a[i]);

  ll ans = 1;
  REP(i,62){
    int p = 0;
    for(; p < n; p++)
      if(a[p] & (1ll << i))
        break;
    if(p == n) continue;
    ans *= 2;

    const ll aa = a[p];
    REP(j,n) if(a[j] & (1ll << i)){
      a[j] = (a[j] ^ aa) | (1ll << i);
    }
  }

  printf("%lld\n", ans);

  return 0;
}
0