diff options
| author | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-06 23:23:53 +0200 |
|---|---|---|
| committer | Omar Magdy <omar.professional8777@gmail.com> | 2022-05-06 23:23:53 +0200 |
| commit | ed4b0690e4ee35278bb656c703bd0a1ab102222f (patch) | |
| tree | fc880ae4d999fbd54e6d370073eb18291da475cd /21-04-2022(Div.4) | |
| parent | 27b754215ceda985f0f8e3b64ab5c5f8e84ab826 (diff) | |
| download | competitive-programming-ed4b0690e4ee35278bb656c703bd0a1ab102222f.tar.xz competitive-programming-ed4b0690e4ee35278bb656c703bd0a1ab102222f.zip | |
Added some problems + moved some folders to contests
Diffstat (limited to '21-04-2022(Div.4)')
| -rwxr-xr-x | 21-04-2022(Div.4)/A | bin | 17792 -> 0 bytes | |||
| -rw-r--r-- | 21-04-2022(Div.4)/A.cpp | 23 | ||||
| -rwxr-xr-x | 21-04-2022(Div.4)/B | bin | 47400 -> 0 bytes | |||
| -rw-r--r-- | 21-04-2022(Div.4)/B.cpp | 30 | ||||
| -rwxr-xr-x | 21-04-2022(Div.4)/E | bin | 24728 -> 0 bytes | |||
| -rw-r--r-- | 21-04-2022(Div.4)/E.cpp | 25 | ||||
| -rwxr-xr-x | 21-04-2022(Div.4)/F | bin | 22712 -> 0 bytes | |||
| -rw-r--r-- | 21-04-2022(Div.4)/F.cpp | 7 |
8 files changed, 0 insertions, 85 deletions
diff --git a/21-04-2022(Div.4)/A b/21-04-2022(Div.4)/A Binary files differdeleted file mode 100755 index 58be759..0000000 --- a/21-04-2022(Div.4)/A +++ /dev/null diff --git a/21-04-2022(Div.4)/A.cpp b/21-04-2022(Div.4)/A.cpp deleted file mode 100644 index 35c326e..0000000 --- a/21-04-2022(Div.4)/A.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include<bits/stdc++.h> - -using namespace std; - -int main(){ - int tt, x; - cin >> tt; - while(tt--){ - cin >> x; - if(x >= 1900){ - cout << "Division 1" << '\n'; - } - else if(x >= 1600 && x <= 1899){ - cout << "Division 2" << '\n'; - } - else if(x >= 1400 && x <= 1599){ - cout << "Division 3" << '\n'; - } - else{ - cout << "Division 4" << '\n'; - } - } -} diff --git a/21-04-2022(Div.4)/B b/21-04-2022(Div.4)/B Binary files differdeleted file mode 100755 index 6a9b6ab..0000000 --- a/21-04-2022(Div.4)/B +++ /dev/null diff --git a/21-04-2022(Div.4)/B.cpp b/21-04-2022(Div.4)/B.cpp deleted file mode 100644 index d1b3e98..0000000 --- a/21-04-2022(Div.4)/B.cpp +++ /dev/null @@ -1,30 +0,0 @@ -#include<bits/stdc++.h> - -using namespace std; - -auto solve(map<int, int> m){ - for(auto x : m){ - if(x.second >= 3){ - return x.first; - } - } - return -1; -} - -int main(){ - int tt, x, n; - cin >> tt; - while(tt--){ - map<int, int> frq; - vector<int> v; - cin >> n; - for(int i = 0; i < n; i++){ - cin >> x; - frq[x]++; - } - // for(auto &x : frq){ - // v.push_back(x.second); - // } - cout << solve(frq) << endl; - } -} diff --git a/21-04-2022(Div.4)/E b/21-04-2022(Div.4)/E Binary files differdeleted file mode 100755 index 0e57ed4..0000000 --- a/21-04-2022(Div.4)/E +++ /dev/null diff --git a/21-04-2022(Div.4)/E.cpp b/21-04-2022(Div.4)/E.cpp deleted file mode 100644 index 7fac1a5..0000000 --- a/21-04-2022(Div.4)/E.cpp +++ /dev/null @@ -1,25 +0,0 @@ -#include<bits/stdc++.h> - -using namespace std; - -int main(){ - int tt, n, count; - cin >> tt; - while(tt--){ - string str; - cin >> n; - count = 0; - vector<string> v(n); - for(int i = 0; i < n; i++){ - cin >> v[i]; - } - for(int i = 0; i < v.size(); i++){ - for(int j = i+1; j < v.size()-1; j++){ - if(v[i][0] != v[j][0] || v[i][1] != v[j][1]){ - count++; - } - } - } - cout << count << endl; - } -} diff --git a/21-04-2022(Div.4)/F b/21-04-2022(Div.4)/F Binary files differdeleted file mode 100755 index b87fe94..0000000 --- a/21-04-2022(Div.4)/F +++ /dev/null diff --git a/21-04-2022(Div.4)/F.cpp b/21-04-2022(Div.4)/F.cpp deleted file mode 100644 index 4ab1a8c..0000000 --- a/21-04-2022(Div.4)/F.cpp +++ /dev/null @@ -1,7 +0,0 @@ -#include<bits/stdc++.h> - -using namespace std; - -int main(){ - -} |
