結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-28 17:21:18
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 1,234 bytes
コンパイル時間 1,247 ms
コンパイル使用メモリ 127,616 KB
実行使用メモリ 34,976 KB
最終ジャッジ日時 2024-06-12 05:16:48
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 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 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 227 ms
25,472 KB
testcase_09 AC 43 ms
6,892 KB
testcase_10 AC 164 ms
19,780 KB
testcase_11 AC 120 ms
14,756 KB
testcase_12 AC 272 ms
29,272 KB
testcase_13 AC 277 ms
31,316 KB
testcase_14 AC 149 ms
18,820 KB
testcase_15 AC 287 ms
33,376 KB
testcase_16 AC 251 ms
28,596 KB
testcase_17 AC 265 ms
30,504 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 335 ms
34,976 KB
testcase_22 AC 324 ms
34,844 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 181 ms
21,688 KB
testcase_29 AC 289 ms
29,980 KB
testcase_30 AC 272 ms
27,216 KB
testcase_31 AC 210 ms
23,316 KB
testcase_32 AC 283 ms
28,992 KB
testcase_33 AC 283 ms
33,640 KB
testcase_34 AC 304 ms
33,360 KB
testcase_35 AC 342 ms
34,696 KB
testcase_36 AC 330 ms
34,440 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;
  readln;
  auto A = readln.split.map!(to!long).array.sort.uniq.array;
  auto N = A.length.to!int;
  auto M = new int[][](N, 61);
  foreach (i, a; enumerate(A))
    foreach (j; 0..61) 
      M[i][j] = (A[i] >> j) % 2;

  auto step = 0;
  foreach (i; 0..min(61,N)) {
    //M.each!(writeln);
    //writeln;
    if (M[i][i] == 0) {
      auto mi = i;
      auto m = 60;
      foreach (j; i+step..N)
        foreach (k; i..61) 
          if (M[j][k] == 1) {
            if (k < m) {
              mi = j;
              m = k;
            }
            break;
          }
      swap(M[i], M[mi]);
      foreach (j; 0..N)
        swap(M[j][i], M[j][m]);
    }
    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]);
        }
  }

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