# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
618046 | czhang2718 | HicCup (FXCUP4_hiccup) | C++17 | 58 ms | 35940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #include "hiccup.h"
using namespace std;
#include "bits/stdc++.h"
const int N=1e6+1;
vector<int> adj[N];
int cnt[N];
int ans;
bool bad;
void dfs(int x){
int e=0, c=0;
for(int i=adj[x].size()-1; i>=0; i--){
int k=adj[x][i];
e+=cnt[k];
c++;
ans=min(ans, e/c);
dfs(k);
}
}
int HicCup(std::string S) {
int n = S.size();
ans=1e9;
S='-'+S;
stack<int> par;
par.push(0);
int prv=-1;
for(int i=1; i<=n; i++){
if(S[i]=='!'){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |