Compare commits

..

No commits in common. "8e3a6a794d2e18a82df20ca505b9784ce8fd9b20" and "7387683604392c2b145a5352ae6c7c10af9b01f5" have entirely different histories.

2 changed files with 0 additions and 109 deletions

View File

@ -1,76 +0,0 @@
#include <cmath>
#include <iostream>
#include <stack>
#include <unordered_map>
using namespace std;
unordered_map<char, int> priority{{'(', 0}, {')', 0}, {'+', 1}, {'-', 1},
{'*', 2}, {'/', 2}, {'^', 3}};
string in_order2post_order(string src) {
stack<char> in;
string builder;
for (int i = 0; i < src.size(); i++) {
if (src[i] == ' ')
continue;
if (isdigit(src[i]))
builder += src[i];
else {
builder += ' ';
while (!in.empty() && priority[in.top()] >= priority[src[i]]) {
builder += in.top();
in.pop();
}
in.push(src[i]);
}
}
if (builder[builder.size() - 1] != ' ')
builder += ' ';
while (!in.empty()) {
builder += in.top();
in.pop();
}
return builder;
}
int eval(string src) {
stack<int> in;
int num_builder = 0;
for (int i = 0; i < src.size(); i++) {
if (isdigit(src[i])) {
num_builder = num_builder * 10 + src[i] - '0';
} else if (src[i] == ' ') {
in.push(num_builder);
num_builder = 0;
} else {
int y = in.top();
in.pop();
int x = in.top();
in.pop();
switch (src[i]) {
case '+':
in.push(x + y);
break;
case '-':
in.push(x - y);
break;
case '*':
in.push(x * y);
break;
case '/':
in.push(x / y);
break;
case '^':
in.push(pow(x, y));
break;
}
}
}
return in.top();
}
int main() {
string str;
getline(cin, str);
cout << eval(in_order2post_order(str)) << endl;
}

View File

@ -1,33 +0,0 @@
#include <unordered_map>
using namespace std;
int read() {
int x = 0, w = 1;
char ch = 0;
while (ch < '0' || ch > '9') {
if (ch == '-')
w = -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9') {
x = x * 10 + (ch - '0');
ch = getchar();
}
return x * w;
}
int main() {
int n = read();
unordered_map<int, int> u;
for (int i = 0; i < n; i++) {
int val = read();
u[val]++;
}
for (const auto &[key, value] : u) {
if (value >= n / 2) {
printf("%d\n", key);
return 0;
}
}
printf("No\n");
}