-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA_Communism_in_Area_11.cpp
118 lines (105 loc) · 1.81 KB
/
A_Communism_in_Area_11.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
// // DATE: 03-06-2023
// // TIME: 03-44-07
// #include <bits/stdc++.h>
// #include <unordered_set>
// using namespace std;
// #define ll long long
// #define sq(a) (a) * (a)
// #define all(a) a.begin(), a.end()
// #define forn(i, n) for (int i = 0; i < n; i++)
// const double PI = 3.14;
// // extern int x;
// void solve()
// {
// int n;
// cin >> n;
// string s;
// cin >> s;
// unordered_map<char, int> m;
// for (auto &x : s)
// {
// m[x]++;
// }
// int ct = 0;
// if (n == 1)
// {
// cout << "YES";
// return;
// }
// for (auto x : m)
// {
// if (x.second > 0)
// {
// ct++;
// }
// }
// if (ct == n)
// {
// cout << "No";
// }
// else
// cout << "Yes";
// }
// int main()
// {
// ios_base::sync_with_stdio(0);
// cin.tie(0);
// cout.tie(NULL);
// // ll t = 1;
// // cin >> t;
// // while (t--)
// // {
// solve();
// // }
// return 0;
// }
// ================================================
// DATE: 03-06-2023
// TIME: 04-00-45
#include <bits/stdc++.h>
#include <unordered_set>
using namespace std;
#define ll long long
#define sq(a) (a) * (a)
#define all(a) a.begin(), a.end()
#define forn(i, n) for (int i = 0; i < n; i++)
const double PI = 3.14;
// extern int x;
void solve()
{
int n;
cin >> n;
string s;
cin >> s;
unordered_set<int> st;
for (auto x : s)
{
st.insert(x);
}
if (n == 1)
{
cout << "YES";
return;
}
if (st.size() == n)
{
cout << "No";
}
else
{
cout << "Yes";
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(NULL);
ll t = 1;
// cin >> t;
while (t--)
{
solve();
}
return 0;
}