結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-28 17:05:19
言語 D
(dmd 2.106.1)
結果
RE  
実行時間 -
コード長 1,065 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 121,748 KB
実行使用メモリ 33,436 KB
最終ジャッジ日時 2024-06-12 05:16:10
合計ジャッジ時間 17,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 543 ms
23,932 KB
testcase_09 AC 100 ms
6,764 KB
testcase_10 AC 398 ms
18,752 KB
testcase_11 AC 271 ms
14,376 KB
testcase_12 AC 651 ms
27,736 KB
testcase_13 AC 704 ms
29,780 KB
testcase_14 AC 377 ms
17,936 KB
testcase_15 AC 779 ms
31,844 KB
testcase_16 AC 626 ms
26,928 KB
testcase_17 AC 685 ms
28,972 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 RE -
testcase_20 AC 483 ms
31,360 KB
testcase_21 AC 809 ms
33,308 KB
testcase_22 AC 782 ms
33,436 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 788 ms
32,008 KB
testcase_34 AC 763 ms
31,700 KB
testcase_35 AC 780 ms
33,164 KB
testcase_36 AC 784 ms
32,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;
import std.numeric;
import std.bigint;


void main() {
  auto N = readln.chomp.to!int;
  auto A = readln.split.map!(to!long);
  auto M = new int[][](N, 61);
  foreach (i, a; enumerate(A))
    foreach (j; 0..61) 
      M[i][j] = (A[i] >> j) % 2;

  foreach (i; 0..61) {
    //M.each!(writeln);
    //writeln;
    if (M[i][i] == 0) {
      auto mi = i;
      auto m = 60;
      foreach (j; i..N)
        foreach (k; i..61) 
          if (M[j][k] == 1) {
            if (k < m) {
              mi = j;
              m = k;
            }
            break;
          }
      swap(M[i], M[mi]);
    }
    if (M[i][i] == 0) continue;

    foreach (j; i+1..N)
      if (M[j][i] == 1)
        foreach (k; i..61) {
          (M[j][k] ^= M[i][k]);
        }
  }

  int i = N - 1;
  long ans = N;
  while (i >= 0 && M[i].sum == 0) {
    i -= 1;
    ans -= 1;
  }
  writeln(2L^^ans);
}
0