# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
872056 | Onur_Ilgaz | Crtanje (COCI20_crtanje) | C++17 | 1 ms | 600 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define fast cin.tie(0)->sync_with_stdio(0);
#define int long long
#define inf ((int)1e18)
using namespace std;
int32_t main(){
fast
string s;
int n;
cin >> n;
cin >> s;
int mx = -inf, mn = inf;
vector <int> v(n);
int val = 0;
for(int i = 0; i < n; i++) {
if(s[i] == '-') val--;
mx = max(val, mx);
mn = min(val, mn);
v[i] = val;
if(s[i] == '+') val++;
}
for(int j = mx; j >= mn; j--) {
for(int i = 0; i < n; i++) {
if(v[i] == j) {
if(s[i] == '+') cout << '/';
if(s[i] == '-') cout << '\\';
if(s[i] == '=') cout << '_';
}
else {
cout << ".";
}
}
cout << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |