Skip to content

Commit 0313541

Browse files
committed
merge to add final problems
2 parents 1fab041 + 6f04a9c commit 0313541

File tree

7 files changed

+163
-200
lines changed

7 files changed

+163
-200
lines changed

Qualification Round/Card Master Köş/solution.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ using namespace std;
55
int main() {
66
ios_base::sync_with_stdio(false);
77
cin.tie(NULL);
8-
8+
99
long long n, k;
1010
cin >> n >> k;
1111

Qualification Round/Casting Homework/solution.cpp

+15-16
Original file line numberDiff line numberDiff line change
@@ -9,48 +9,47 @@ string solve(string s, int target, int k) {
99
vector<bool> found(k + 1, false);
1010

1111
vector<int> nums(n);
12-
for(int i = 0; i < n; i++)
12+
for (int i = 0; i < n; i++)
1313
nums[i] = s[i] - 'a' + 1;
1414

1515
bitset<maxk> bs;
1616
int upperbound = 1 << n;
1717

18-
for(int i = 1; i < upperbound; i++) {
18+
for (int i = 1; i < upperbound; i++) {
1919
bs = bitset<maxk>(i);
20-
if(bs.count() > k)
20+
if (bs.count() > k)
2121
continue;
22-
23-
if(found[bs.count()])
22+
23+
if (found[bs.count()])
2424
continue;
2525

2626
int sum = 0;
27-
for(int j = 0; j < n; j++)
28-
if(bs.test(j))
27+
for (int j = 0; j < n; j++)
28+
if (bs.test(j))
2929
sum += nums[j];
30-
if(sum == target) {
30+
if (sum == target) {
3131
found[bs.count()] = true;
3232
}
3333
}
34-
string res="";
35-
for(int i = 1; i <= k; i++)
34+
string res = "";
35+
for (int i = 1; i <= k; i++)
3636
res = res + to_string(found[i]) + " ";
3737

3838
return res;
3939
}
4040

4141
int main() {
42-
4342
ios_base::sync_with_stdio(false);
4443
cin.tie(NULL);
4544

4645
int targetSum, kmax;
4746
string st;
48-
49-
cin>>st;
50-
cin>>targetSum>>kmax;
5147

52-
string res = solve(st,targetSum,kmax);
48+
cin >> st;
49+
cin >> targetSum >> kmax;
50+
51+
string res = solve(st, targetSum, kmax);
5352
cout << res;
5453

55-
return 0;
54+
return 0;
5655
}

Qualification Round/Dining Coders/solution.cpp

+36-42
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,67 @@
1+
#include <algorithm>
12
#include <iostream>
2-
#include <vector>
3-
#include <unordered_set>
4-
#include <unordered_map>
53
#include <queue>
64
#include <sstream>
7-
#include <algorithm>
5+
#include <unordered_map>
6+
#include <unordered_set>
7+
#include <vector>
88

99
using namespace std;
1010

1111
class Table {
12-
unordered_map<int, int> who_has_what;
12+
unordered_map<int, int> whoHasWhat;
1313
priority_queue<pair<int, int>> biggest;
1414
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> smallest;
1515
int center;
1616

17-
public:
18-
Table(int center, vector<int>& arr){
17+
public:
18+
Table(int center, vector<int>& arr) {
1919
this->center = center;
2020

21-
for (int i = 0; i < arr.size(); i++){
22-
who_has_what[i] = arr[i];
21+
for (int i = 0; i < arr.size(); i++) {
22+
whoHasWhat[i] = arr[i];
2323
smallest.push({arr[i], i});
2424
biggest.push({arr[i], -i});
2525
}
2626
}
2727

28-
pair<int, int> push_to_center(int new_element){
29-
30-
while (who_has_what[smallest.top().second] != smallest.top().first){
28+
pair<int, int> pushToCenter(int newElement) {
29+
while (whoHasWhat[smallest.top().second] != smallest.top().first) {
3130
smallest.pop();
3231
}
3332

34-
auto top = smallest.top(); smallest.pop();
33+
auto top = smallest.top();
34+
smallest.pop();
3535

36-
who_has_what[top.second] = this->center;
36+
whoHasWhat[top.second] = this->center;
3737
smallest.push({this->center, top.second});
38-
biggest.push({this->center, -top.second}); // TODO: correct second element
38+
biggest.push({this->center, -top.second});
3939

40-
this->center = new_element;
40+
this->center = newElement;
4141

4242
return {top.first, top.second + 1};
4343
}
4444

45-
int pop_from_center(int new_element){
46-
47-
while (who_has_what[-biggest.top().second] != biggest.top().first){
45+
int pop_from_center(int newElement) {
46+
while (whoHasWhat[-biggest.top().second] != biggest.top().first) {
4847
biggest.pop();
4948
}
5049

51-
auto top = biggest.top(); biggest.pop();
52-
53-
int previous_center_val = this->center;
50+
auto top = biggest.top();
51+
biggest.pop();
52+
53+
int previousCenterValue = this->center;
5454
this->center = top.first;
5555

56-
who_has_what[-top.second] = new_element;
57-
smallest.push({new_element, -top.second});
58-
biggest.push({new_element, top.second});
59-
60-
return previous_center_val;
61-
}
56+
whoHasWhat[-top.second] = newElement;
57+
smallest.push({newElement, -top.second});
58+
biggest.push({newElement, top.second});
6259

60+
return previousCenterValue;
61+
}
6362
};
6463

65-
int main(int argc, char** argv){
66-
64+
int main() {
6765
ios_base::sync_with_stdio(false);
6866
cin.tie(NULL);
6967

@@ -73,22 +71,18 @@ int main(int argc, char** argv){
7371
vector<int> arr(n);
7472
for (int i = 0; i < n; i++)
7573
cin >> arr[i];
76-
74+
7775
Table table = Table(center, arr);
7876

79-
for (int i = 0; i < m; i++){
80-
int q_type, new_element;
81-
cin >> q_type >> new_element;
77+
for (int i = 0; i < m; i++) {
78+
int q_type, newElement;
79+
cin >> q_type >> newElement;
8280

83-
if (q_type == 1){
84-
auto ret_val = table.push_to_center(new_element);
81+
if (q_type == 1) {
82+
auto ret_val = table.pushToCenter(newElement);
8583
cout << ret_val.first << " " << ret_val.second << "\n";
86-
}
87-
else if (q_type == 2){
88-
cout << table.pop_from_center(new_element) << "\n";
89-
}
90-
else {
91-
cerr << "Hatali islem!\n";
84+
} else {
85+
cout << table.pop_from_center(newElement) << "\n";
9286
}
9387
}
9488

Qualification Round/Equivalent Words/solution.cpp

+22-23
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,60 @@
1+
#include <algorithm>
12
#include <iostream>
2-
#include <unordered_map>
33
#include <string>
4+
#include <unordered_map>
45
#include <vector>
5-
#include <algorithm>
66

77
using namespace std;
88

99
#define ALPHABET_SIZE 26
1010

11-
string calculateHashString(string word){
12-
11+
string calculateHashString(string word) {
1312
vector<int> alphabet(ALPHABET_SIZE);
14-
for (char ch: word){
13+
for (char ch : word) {
1514
alphabet[tolower(ch) - 'a']++;
1615
}
1716

1817
vector<int> letterCounts;
19-
for (int i = 0; i < ALPHABET_SIZE; i++){
18+
for (int i = 0; i < ALPHABET_SIZE; i++) {
2019
if (alphabet[i] > 0)
2120
letterCounts.push_back(alphabet[i]);
2221
}
22+
2323
sort(letterCounts.begin(), letterCounts.end());
2424

2525
string hashString;
26-
for (int count: letterCounts){
26+
for (int count : letterCounts) {
2727
hashString += to_string(count);
2828
hashString += ',';
2929
}
3030
return hashString;
3131
}
3232

33-
void printVector(vector<int>& v){
34-
for (int i = 0; i < v.size(); i++){
33+
void printVector(vector<int>& v) {
34+
for (int i = 0; i < v.size(); i++) {
3535
cout << v[i] << " ";
36-
} cout << endl;
36+
}
37+
cout << endl;
3738
}
3839

39-
int main(){
40-
40+
int main() {
4141
ios_base::sync_with_stdio(false);
4242
cin.tie(NULL);
4343

44-
int n, m; cin >> n >> m;
45-
44+
int n, m;
45+
cin >> n >> m;
46+
4647
unordered_map<string, vector<int>> acronyms;
47-
48-
for (int i = 0; i < n; i++){
49-
string word; cin >> word;
50-
acronyms[calculateHashString(word)].push_back(i);
51-
}
5248

53-
for (auto itr = acronyms.begin(); itr != acronyms.end(); itr++){
54-
sort(itr->second.begin(), itr->second.end());
49+
for (int i = 0; i < n; i++) {
50+
string word;
51+
cin >> word;
52+
acronyms[calculateHashString(word)].push_back(i);
5553
}
5654

57-
for (int i = 0; i < m; i++){
58-
string query; cin >> query;
55+
for (int i = 0; i < m; i++) {
56+
string query;
57+
cin >> query;
5958
printVector(acronyms[calculateHashString(query)]);
6059
}
6160

Qualification Round/Kavraz Tree/solution.cpp

+17-19
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,38 @@
22

33
using namespace std;
44

5-
6-
int dfs(vector<vector<int>>& adjList, vector<int>& depths, int node, int parent ){
7-
5+
int dfs(vector<vector<int>>& adjList, vector<int>& kavrazLevels, int node, int parent) {
86
// leaves
9-
if (adjList[node].size() == 1 && adjList[node][0] == parent){
10-
return depths[node] = 0;
7+
if (adjList[node].size() == 1 && adjList[node][0] == parent) {
8+
return kavrazLevels[node] = 0;
119
}
1210

13-
vector<int> child_depths;
14-
for (int next_node: adjList[node]){
11+
// for internal nodes, find the kavraz levels of all nodes in subtree
12+
vector<int> childKavrazLevels;
13+
for (int next_node : adjList[node]) {
1514
if (next_node != parent)
16-
child_depths.push_back(dfs(adjList, depths, next_node, node));
15+
childKavrazLevels.push_back(dfs(adjList, kavrazLevels, next_node, node));
1716
}
1817

19-
int max_depth = 0;
20-
sort(child_depths.begin(), child_depths.end(), greater<int>());
21-
for (int i = 0; i < child_depths.size(); i++){
22-
max_depth = max(max_depth, child_depths[i] + i + 1);
18+
sort(childKavrazLevels.begin(), childKavrazLevels.end(), greater<int>());
19+
int maxDepth = 0;
20+
for (int i = 0; i < childKavrazLevels.size(); i++) {
21+
maxDepth = max(maxDepth, childKavrazLevels[i] + i + 1);
2322
}
2423

25-
return depths[node] = max_depth;
24+
return kavrazLevels[node] = maxDepth;
2625
}
2726

28-
int main(){
29-
27+
int main() {
3028
ios_base::sync_with_stdio(false);
3129
cin.tie(NULL);
3230

3331
int n;
3432
cin >> n;
3533

36-
vector<vector<int>> adjList(n+1);
34+
vector<vector<int>> adjList(n);
3735

38-
for (int i = 0; i < n - 1; i++){
36+
for (int i = 0; i < n - 1; i++) {
3937
int x, y;
4038
cin >> x >> y;
4139

@@ -46,9 +44,9 @@ int main(){
4644
int root;
4745
cin >> root;
4846

49-
vector<int> depths(n+1);
47+
vector<int> kavrazLevels(n + 1);
5048

51-
cout << dfs(adjList, depths, root, -1);
49+
cout << dfs(adjList, kavrazLevels, root, -1);
5250

5351
return 0;
5452
}

0 commit comments

Comments
 (0)