標題:
202409潛力3-天秤Libra
[打印本頁]
作者:
may
時間:
2024-10-20 15:57
標題:
202409潛力3-天秤Libra
[attach]20106[/attach]
天秤 (Libra)
問題敘述
教室裡有N個砝碼,重量分別為W
1
, W
2
. …, W
N
公克。請判斷是否有可能將砝碼分成兩堆,分別放上天秤的兩端後會呈現出平衡的狀態,也就是兩邊的重量相等。 例如:有N = 3個砝碼,(W
1
, W
2
, W
3
) = (1, 2, 3)。我們分別將重量為W
1
和W
2
的砝碼分成一堆、重量為W
3
的砝碼自己一堆,放上天秤的兩端之後會呈現出平衡狀態,因為兩邊的重量都是3公克。
[attach]20005[/attach]
輸出格式
請輸出一個整數,整數0表示所有的分法皆不可能出現平衡的狀態、整數1則表示可能出現平衡的狀態。
[attach]20006[/attach]
評分說明
此題目測資分成兩組,每組測資有多筆測試資料,需答對該組所有測試資料才能獲得該組分數,各組詳細限制如下。
第一組 (40 分):N ≤ 20。
第二組 (60 分):無特別限制。`
https://zerojudge.tw/ShowProblem?problemid=o628
作者:
may
時間:
2024-12-16 22:10
#include<bits/stdc++.h>
using namespace std;
bool canBalance(const vector<int>& weights, int totalWeight) {
int n = weights.size();
vector<bool> dp(totalWeight / 2 + 1, false); // dp[i] 表示是否能夠湊出重量 i
dp[0] = true; // 初始狀態:重量 0 一定可以湊出
for (int weight : weights) {
for (int j = totalWeight / 2; j >= weight; j--) {
dp[j] = dp[j] || dp[j - weight];
}
}
return dp[totalWeight / 2];
}
int main() {
int N;
cin >> N;
vector<int> weights(N);
for (int i = 0; i < N; i++) {
cin >> weights[i];
}
int totalWeight = accumulate(weights.begin(), weights.end(), 0);
// 如果總重量不是偶數,則無法平分
if (totalWeight % 2 != 0) {
cout << 0 << endl;
return 0;
}
// 判斷是否能平分
if (canBalance(weights, totalWeight)) {
cout << 1 << endl;
} else {
cout << 0 << endl;
}
return 0;
}
複製代碼
作者:
may
時間:
2024-12-17 22:22
#include <bits/stdc++.h>
using namespace std;
const int N = 10005;
int a[N], n, m, rec[N];
bool nu;
void dfs(int start, int sum, int cnt) {
if (sum > m) return;//剪枝
if (sum == m) {
//for (int i = 0; i < cnt; i++)
//cout << rec[i] << " ";
nu = true;//記錄是否找到一组解
cout<< 1 <<endl;
return;
}
for (int i = start; i < n; i++) { //重覆性剪枝
rec[cnt] = a[i]; //記錄當前選的值
//cout<<rec[cnt]<<"#";
dfs(i + 1, sum + a[i], cnt + 1); //對下一個進行搜索
if (nu)
return;
}
}
int main() {
cin >> n ;//n個砝碼
for (int i = 0; i < n; i++) {
cin >> a[i];//a 陣列裡放n個砝碼
m +=a[i];//砝碼重量加總
}
if(m%2==1)//總重量若為奇數,不可能出現平衡的狀態
cout<<0;
m/=2;//若要天秤平衡,必須找到一個子集合的和正好是加總的一半
dfs(0, 0, 0);//start,sum,cnt
if (!nu)
cout << 0 << endl;
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2