aboutsummaryrefslogtreecommitdiff
path: root/cutTheSticksJoe/cutTheSticksJoe.cpp
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2022-11-05 01:42:16 +0200
committeromagdy7 <omar.professional8777@gmail.com>2022-11-05 01:42:16 +0200
commit42e25addbbce62e8bb43ab587b21c5bccb495bfb (patch)
tree3b2bd1ec0e8b5cb0a6d86ab6035e98a8ed3f8322 /cutTheSticksJoe/cutTheSticksJoe.cpp
parent7f856c7ff080b8d455b9ed16c2e57dd862c3879d (diff)
downloadcompetitive-programming-42e25addbbce62e8bb43ab587b21c5bccb495bfb.tar.xz
competitive-programming-42e25addbbce62e8bb43ab587b21c5bccb495bfb.zip
Moved some files
Diffstat (limited to 'cutTheSticksJoe/cutTheSticksJoe.cpp')
-rw-r--r--cutTheSticksJoe/cutTheSticksJoe.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/cutTheSticksJoe/cutTheSticksJoe.cpp b/cutTheSticksJoe/cutTheSticksJoe.cpp
deleted file mode 100644
index 4504062..0000000
--- a/cutTheSticksJoe/cutTheSticksJoe.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <bits/stdc++.h>
-
-using namespace std;
-
-int main() {
- ios::sync_with_stdio(false);
- cin.tie(0);
- int n;
- cin >> n;
- map<int, int> mp;
- for (int i = 0; i < n; i++) {
- int x;
- cin >> x;
- ++mp[x];
- }
- for (auto p : mp) {
- cout << n << '\n';
- n -= p.second;
- }
- return 0;
-}