# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
857268 | SalihSahin | Crtanje (COCI20_crtanje) | C++14 | 1 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int mod = 998244353;
int32_t main(){
cin.tie(0);
ios_base::sync_with_stdio(false);
int n;
cin>>n;
string s;
cin>>s;
int vl = 0, mx = 0, mn = 0;
for(auto itr: s){
if(itr == '+') vl++;
else if(itr == '-') vl--;
mx = max(mx, vl);
mn = min(mn, vl);
}
vector<vector<char> > a(mx - mn, vector<char>(n, '.'));
int i = mx;
for(int j = 0; j < n; j++){
if(s[j] == '+'){
a[i][j] = '/';
i--;
}
else if(s[j] == '-'){
a[i][j] = 92;
i++;
}
else{
a[i][j] = '_';
}
}
for(int j = 0; j < mx - mn; j++){
for(int k = 0; k < n; k++){
cout<<a[j][k];
}
cout<<endl;
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |