結果

問題 No.937 Ultra Sword
ユーザー chocoruskchocorusk
提出日時 2019-11-29 22:23:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,379 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 110,036 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-11-21 02:22:17
合計ジャッジ時間 154,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
10,404 KB
testcase_01 TLE -
testcase_02 AC 4 ms
9,216 KB
testcase_03 AC 5 ms
10,496 KB
testcase_04 AC 4 ms
10,496 KB
testcase_05 AC 34 ms
9,216 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 51 ms
9,216 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 53 ms
10,496 KB
testcase_22 TLE -
testcase_23 AC 9 ms
10,496 KB
testcase_24 AC 44 ms
9,216 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int gcd(int, int)':
main.cpp:44:19: warning: 'ib' may be used uninitialized [-Wmaybe-uninitialized]
   44 |         b-=(a<<(ib-ia));
      |                ~~~^~~~
main.cpp:31:17: note: 'ib' was declared here
   31 |         int ia, ib;
      |                 ^~
main.cpp:44:19: warning: 'ia' may be used uninitialized [-Wmaybe-uninitialized]
   44 |         b-=(a<<(ib-ia));
      |                ~~~^~~~
main.cpp:31:13: note: 'ia' was declared here
   31 |         int ia, ib;
      |             ^~

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int gcd(int a, int b){
	if(a>b) swap(a, b);
	if(a==0) return b;
	int ia, ib;
	for(int i=16; i>=0; i--){
		if(a&(1<<i)){
			ia=i;
			break;
		}
	}
	for(int i=16; i>=0; i--){
		if(b&(1<<i)){
			ib=i;
			break;
		}
	}
	b-=(a<<(ib-ia));
	return gcd(a, b);
}
int main()
{
	int n;
	cin>>n;
	int c[100010]={};
	int a[100010];
	for(int i=0; i<n; i++){
		cin>>a[i];
		c[a[i]]++;
	}
	int g=a[0];
	for(int i=1; i<n; i++){
		g=gcd(g, a[i]);
	}
	int ig=0;
	for(int i=16; i>=0; i--){
		if(g&(1<<i)){
			ig=i;
			break;
		}
	}
	ll ans=0;
	for(int i=0; i<n; i++) ans+=a[i];
	ll sum0=ans;
	for(int d=1; d<=100000; d++){
		int x=d;
		for(int i=16; i>=ig; i--){
			if(x&(1<<i)){
				x-=(g<<(i-ig));
			}
		}
		if(x) continue;
		ll sum=sum0;
		for(int i=d; i<=100000; i+=d){
			sum-=(ll)c[i]*(i-i/d);
		}
		ans=min(ans, sum);
	}
	cout<<ans<<endl;
	return 0;
}
0