結果

問題 No.937 Ultra Sword
ユーザー tonyu0tonyu0
提出日時 2019-12-01 11:42:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 3,000 ms
コード長 1,027 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 88,572 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-11-21 04:31:51
合計ジャッジ時間 7,527 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 142 ms
6,816 KB
testcase_06 AC 259 ms
8,064 KB
testcase_07 AC 288 ms
8,204 KB
testcase_08 AC 120 ms
6,816 KB
testcase_09 AC 90 ms
6,816 KB
testcase_10 AC 311 ms
8,448 KB
testcase_11 AC 24 ms
6,816 KB
testcase_12 AC 110 ms
6,820 KB
testcase_13 AC 109 ms
6,816 KB
testcase_14 AC 121 ms
6,820 KB
testcase_15 AC 92 ms
6,820 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 11 ms
6,816 KB
testcase_18 AC 102 ms
6,820 KB
testcase_19 AC 59 ms
6,816 KB
testcase_20 AC 53 ms
6,816 KB
testcase_21 AC 276 ms
9,856 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 204 ms
6,820 KB
testcase_25 AC 137 ms
6,816 KB
testcase_26 AC 216 ms
6,816 KB
testcase_27 AC 147 ms
6,816 KB
testcase_28 AC 152 ms
6,816 KB
testcase_29 AC 5 ms
6,816 KB
testcase_30 AC 221 ms
6,816 KB
testcase_31 AC 263 ms
6,820 KB
testcase_32 AC 125 ms
6,820 KB
testcase_33 AC 185 ms
6,816 KB
testcase_34 AC 29 ms
6,816 KB
testcase_35 AC 17 ms
6,816 KB
testcase_36 AC 127 ms
6,820 KB
testcase_37 AC 14 ms
6,820 KB
testcase_38 AC 145 ms
6,816 KB
testcase_39 AC 11 ms
6,820 KB
testcase_40 AC 173 ms
6,820 KB
testcase_41 AC 42 ms
6,820 KB
testcase_42 AC 132 ms
6,820 KB
testcase_43 AC 123 ms
6,820 KB
testcase_44 AC 54 ms
6,816 KB
testcase_45 AC 82 ms
6,820 KB
testcase_46 AC 92 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
using namespace std;

int main() {
  cin.tie(0);
  ios_base::sync_with_stdio(false);

  int N; cin >> N;
  vector<int> A(N);
  map<int, long long> mp;

  int g = 0;
  long long sum = 0;
  for(int i = 0; i < N; ++i) {
    cin >> A[i];
    sum += A[i];
    // calc gcd
    int a = g, b = A[i];
    while(true) {
      if(a < b) swap(a, b);
      if(b == 0) break;
      int c = b;
      while(__builtin_clz(a) != __builtin_clz(c)) c <<= 1;
      c = a ^ c;
      a = b, b = c;
    }
    g = a;

    // calc divisors of A[i]
    int n = A[i];
    for(int j = 1; j * j <= n; ++j) {
      if(n % j == 0) {
        mp[j] += A[i] - n / j;
        if(n / j != j) mp[n / j] += A[i] - j;
      }
    }
  }

  long long ans = 0;
  for(auto m : mp) {
    int div = m.first;
    while(div >= g) {
      int h = g;
      while(__builtin_clz(div) != __builtin_clz(h)) h <<= 1;
      div ^= h;
    }
    if(div == 0) ans = max(ans, m.second);
  }

  cout << sum - ans << '\n';
  return 0;
}
0