結果

問題 No.546 オンリー・ワン
ユーザー gzlcpgzlcp
提出日時 2017-07-14 23:14:15
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 880 ms
コンパイル使用メモリ 88,144 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 20:31:49
合計ジャッジ時間 1,455 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 10 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>
#include<vector>
#include<algorithm>
#include<queue>
#include<set>
#include<map>
#define REP(i, n) for(long long i = 0; i < n; ++i)
#define ALL(a) a.begin(), a.end()
#define INF (long long)1000000000
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;

ll gcd(ll a, ll b) {
	if(b == 0) return a;
	return gcd(b, a % b);
}

ll solve(vector<ll> c, int m, int n) {
	ll res = 0;
	for(ll i = 1; i < (1 << m); i++) {
		ll num = 0;
		for(ll j = i; j != 0; j >>= 1) num += j & 1;
		ll lcm = 1;
		for(ll j = 0; j < m; ++j) {
			if((i >> j) & 1) {
				lcm = lcm / gcd(lcm, c[j]) * c[j];
				if(lcm > n) break;
			}
		}
		if(num % 2 == 0) res -= n / lcm;
		else res += n / lcm;
	}
	return res;
}

int main() {
	int n, l, h;
	cin>>n>>l>>h;
	vector<ll> c(n);
	REP(i, n) cin>>c[i];
	ll res = 0;
	REP(i, n) {
		vector<ll> b;
		REP(j, n) {
			if(j == i) continue;
			else b.push_back(c[j]);
		}
		res += solve(c, n, h) - solve(b, n - 1, h);
		if(l > 1) res -= solve(c, n, l - 1) - solve(b, n - 1, l - 1);
	}
	cout<<res<<endl;
}
0