飛步A輪筆試題1 ABC
題目1 : ABC
時間限制:10000ms
單點時限:1000ms
記憶體限制:256MB
描述
雜貨鋪老闆一共有N件物品,每件物品具有ABC三種屬性中的一種或多種。從雜貨鋪老闆處購得一件物品需要支付相應的代價。
現在你需要計算出如何購買物品,可以使得ABC三種屬性都在購買的物品中出現,並且支付的總代價最小。
輸入
第一行包含一個整數N。
以下N行,每行包含一個整數C和一個只包含"ABC"的字串,代表購得該物品的代價和其具有的屬性。
對於50%的資料,1 ≤ N ≤ 20
對於100%的資料,1 ≤ N ≤ 1000 1 ≤ C ≤ 100000
輸出
一個整數,代表最小的代價。如果無論如何湊不齊ABC三種屬性,輸出-1。
樣例輸入
5 10 A 9 BC 11 CA 4 A 5 B
樣例輸出
13
比賽已經結束,去題庫提交。
import java.util.ArrayList;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int n = scanner.nextInt();
ArrayList<Good> goods = new ArrayList<>();
for (int i = 0; i < n; ++i) {
goods.add(new Good(scanner.nextInt(), scanner.nextLine().trim( )));
}
int min = 400000;
for (int i = 0; i < n; ++i) {
Good g1 = goods.get(i);
String str = g1.attr;
if (str.contains("A") && str.contains("B") && str.contains("C")) {
if (min > g1.cost) {
min = g1.cost;
}
} else {
for (int j = i + 1; j < n; ++j) {
Good g2 = goods.get(j);
str = g1.attr + g2.attr;
if (str.contains("A") && str.contains("B") && str.contains("C")) {
min = Math.min(min, g1.cost + g2.cost);
} else {
for (int k = j + 1; k < n; ++k) {
Good g3 = goods.get(k);
str = g1.attr + g2.attr + g3.attr;
if (str.contains("A") && str.contains("B") && str.contains("C")) {
min = Math.min(min, g1.cost + g2.cost + g3.cost);
}
}
}
}
}
}
if (min == 400000) {
min = -1;
}
System.out.println(min);
}
}
class Good {
public int cost;
public String attr;
public Good(int cost, String attr) {
this.cost = cost;
this.attr = attr;
}
}