-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabc044_b.cpp
132 lines (109 loc) · 3.52 KB
/
abc044_b.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
#include <bits/stdc++.h>
using namespace std;
typedef vector<long long> vll;
typedef long long int lli;
typedef unsigned long long int ulli;
#define LOOP(I, S, E) for(lli I = S; I < E; I++)
#define LOOPIN(i, E, V) for(lli i = 0; i < E; i++){cin >> V[i];}
#define LOOPOUT(i, E, V) for(lli i = 0; i < E; i++){cout << V[i] << endl;}
#define SWAP(A, B) A ^= B ^= A ^= B
#define TOBIN(I, b) bitset<b>(I).to_string()
#define endl '\n'
#define sws ios_base::sync_with_stdio(false); std::cin.tie(0); std::cout.tie(0);
ulli nop(ulli number);
ulli hibit(ulli x);
bool isPalindrome(string s);
lli sumdigits(lli x);
lli productScalar(pair <int, int> B, pair <int, int> A);
lli normSquareVector(pair <int, int>);
lli colinearThreePoints(pair <int, int> A, pair<int, int> B, pair<int,int> C);
pair<int, int> averagePoint(pair<int, int> A, pair<int, int> B);
void outputFormated(string S, int lineSize);
const string caeserAlphabet { " ABCDEFGHIJKLMNOPQRSTUVWXYZ" };
/*====================================================================================================*/
int main(void){
sws
string w;
cin >> w;
map<char, int> count;
for(int i = 0; i < w.size(); i++) count[w[i]]++;
for(auto i : count) {
if(i.second % 2 != 0){
cout << "No" << endl;
return 0;
}
}
cout << "Yes" << endl;
return 0;
}
/*====================================================================================================*/
// Function to return the ~X.
ulli nop(ulli number){
return (~number)^(ULLONG_MAX<<(hibit(number)));
}
// Function to return the highest bit position of a number.
ulli hibit(ulli x){
return (lli)log2(x)+1;
}
// Function to verify if a given string is a palindrome or not.
bool isPalindrome(string s){
int l = 0;
int r = s.size();
while(l < r){
if(s[l] != s[r]) return false;
l++;
r--;
}
return true;
}
// Function to return the sum of digits of a number.
lli sumdigits(lli x){
lli rest;
lli result = 0;
do{
rest = x % 10;
result += rest;
x = x/10;
}while(x > 0);
return result;
}
// to find the scalar product between two vectors.
lli productScalar(pair <int, int> A, pair <int, int> B){
return A.first * B.first + A.second * B.second;
}
// to find the square of the norm of a vector.
lli normSquareVector(pair <int, int> A){
return A.first*A.first + A.second*A.second;
}
void outputFormated(string S, int lineSize){
istringstream outputString(S);
size_t lineLen = 0;// Better than an int or lli.
string currentWord;
while(outputString >> currentWord){
size_t wordLen = currentWord.size();
if(lineLen == 0){
cout << currentWord;
lineLen = currentWord.size();
continue;
}
else{
if(lineLen + wordLen + 1 > 60){
cout << endl;
cout << currentWord;
lineLen = wordLen;
}
else{
cout << ' ' << currentWord;
lineLen += wordLen + 1;
}
}
}
}
// returns the value of the determinant given three points.
lli colinearThreePoints(pair <int, int> A, pair<int, int> B, pair<int,int> C){
return (-1)*C.first*B.second + (-1)*C.second*A.first + (-1)*B.first*A.second + A.first*B.second + A.second*C.first + B.first*C.second;
}
// Returns the average point of two given points.
pair<int, int> averagePoint(pair<int, int> A, pair<int, int> B){
return {(A.first+B.first)/2, (A.second+B.second)/2};
}