-
Notifications
You must be signed in to change notification settings - Fork 36
/
1042B - Vitamins.cpp
138 lines (130 loc) · 3.13 KB
/
1042B - Vitamins.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#include<bits/stdc++.h>
#define endl '\n'
#define ll long long int
#define loop(i,a,b) for(ll i=a;i<=b;++i)
#define pb push_back
#define F first
#define S second
#define mp make_pair
#define clr(x) x.clear()
#define MOD 1000000007
#define itoc(c) ((char)(((int)'0')+c))
#define SZ(x) (x).size()
#define all(p) p.begin(),p.end()
#define mid(s,e) (s+(e-s)/2)
#define tcase() ll t,n; cin>>t;n=t; while(t--)
#define iscn(num) scanf("%d",&num);
using namespace std;
typedef pair<ll,string>Pair;
bool file=0,rt=1;
clock_t tStart ;
void FAST_IO();
////////////////////////
int main()
{
FAST_IO();
////////////////////////
ll n,temp;
string s, final;
cin>>n ;
std::vector<Pair> vitamins;
Pair p;
ll A=-1, B=-1, C=-1,ABC=-1;
for(int i=0 ; i< n ;i++){
final="000";
cin>>temp;
cin>>s;
p.F=temp;
ll sz=SZ(s);
for(int j=0; j< sz; j++){
char c=s[j];
if(c=='A')
final[0]='1';
if(c=='B')
final[1]='1';
if(c=='C')
final[2]='1';
}
p.S=final;
vitamins.pb(p);
if(final=="100"){
if(A==-1)
A=temp;
else
A=min(A,temp);
}
else if(final=="010"){
if(B==-1)
B=temp;
else
B=min(B,temp);
}
else if(final=="001"){
if(C==-1)
C=temp;
else
C=min(C,temp);
}
else if(final=="111"){
if(ABC==-1)
ABC=temp;
else
ABC=min(ABC,temp);
}
}
bool flag= false ;
ll ans=INT_MAX;
if(A!=-1 && B!=-1 && C!=-1){
ans=A+B+C;
flag=true ;
}
if(ABC!=-1){
ans=min(ans, ABC);
flag=true ;
}
for(int i=0; i< n-1; i++){
ll temp=0;
string a, b ;
a=vitamins[i].S;
for(int j=i+1 ; j< n ; j++){
bool t=true ;
b=vitamins[j].S;
ll sz=a.size();
for(int k=0; k<sz ; k++){
if(a[k]!='1' && b[k]!='1'){
t=false ;
break;
}
}
if(t){
temp=vitamins[i].F + vitamins[j].F;
ans=min(ans,temp);
flag=true;
}
}
}
if(flag)
cout<<ans<<endl;
else
cout<<-1<<endl;
////////////////////////
if(rt && file){
printf("\nTime taken: %.6fs", (double)(clock() - tStart)/CLOCKS_PER_SEC);
}
return 0;
}
void FAST_IO()
{
ios_base::sync_with_stdio(0);
//cin.tie(NULL);
//cout.tie(NULL);
//cout.setf(ios::fixed);
//cout.precision(2);
if(rt && file){ tStart = clock(); }
if(file){
#ifndef _offline
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
}