Skip to content

Commit 37ef7b6

Browse files
committed
Added 1809A - Garland.cpp
1 parent 0a24e1a commit 37ef7b6

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

1809A - Garland.cpp

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// ॐ नमः शिवाय
2+
#include<bits/stdc++.h>
3+
using namespace std;
4+
5+
#define ll long long
6+
#define pb push_back
7+
#define ff first
8+
#define ss second
9+
#define mp make_pair
10+
11+
// Code Written By: Vikash Patel
12+
// Codeforces Profile: https://codeforces.com/profile/vikashpatel
13+
14+
int main()
15+
{
16+
ios_base::sync_with_stdio(0);
17+
cin.tie(0);
18+
cout.tie(0);
19+
20+
// #ifndef ONLINE_JUDGE
21+
// freopen("input.txt", "r", stdin);
22+
// freopen("/Users/vikash/Desktop/output.txt", "w", stdout);
23+
// #endif
24+
25+
int t;
26+
cin>>t;
27+
while(t--)
28+
{
29+
string s;
30+
cin>>s;
31+
unordered_map<char, int> mp;
32+
for(auto i : s)
33+
{
34+
mp[i]++;
35+
}
36+
if(mp.size() >= 3)
37+
cout<<4<<endl;
38+
else if(mp.size() == 2 && (mp[s[0]] == 2 || mp[s[1]] == 2 || mp[s[2]] == 2))
39+
cout<<4<<endl;
40+
else if(mp.size() == 2)
41+
cout<<6<<endl;
42+
else
43+
cout<<-1<<endl;
44+
}
45+
return 0;
46+
}

0 commit comments

Comments
 (0)