# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
660647 | 2022-11-22T17:36:14 Z | BidoTeima | Poklon (COCI17_poklon) | C++17 | 1478 ms | 524288 KB |
/* ID: BidoTeima LANG: C++11 TASK: */ #include <bits/stdc++.h> using namespace std; using ll = long long; void moo(string filename); void ACPLS(string str = "") { if(str=="NOF")return; if(str.size()) moo(str); else{ #ifndef ONLINE_JUDGE freopen("output.txt", "w", stdout); freopen("input.txt", "r", stdin); #endif } ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); } void moo(string fileName){ freopen((fileName+".in").c_str(),"r",stdin); freopen((fileName+".out").c_str(),"w",stdout); } #define tc \ int tttttt/*,subtask*/; \ cin >> tttttt/* >> subtask*/; \ while (tttttt--)/*end */ map<ll,vector<ll>>adj{}; map<ll,ll>sum{}; vector<ll>sorted; void toposort(ll node){ if(node<=0)return; if(adj[node].size()<2){ cout<<"BRUH"; exit(0); } toposort(adj[node][0]); toposort(adj[node][1]); sorted.push_back(node); } void dfs(ll node){ if(node<=0)return; if(adj[node].size()<2){ cout<<"BRUH"; exit(0); } ll x=0,y=0; if(adj[node][0]>0){ x=sum[adj[node][0]]; } else{ x=-adj[node][0]; } if(adj[node][1]>0){ y=sum[adj[node][1]]; } else{ y=-adj[node][1]; } sum[node]+=x+y+abs(x-y); } int main() { //ACPLS(); int n; cin>>n; for(int i = 1; i <= n; i++){ int u,v; cin>>u>>v; adj[i].push_back(u); adj[i].push_back(v); } toposort(1); for(int node : sorted){ dfs(node); } string binary; while(sum[1]){ binary.push_back((sum[1]%2)+'0'); sum[1]/=2; } reverse(binary.begin(),binary.end()); cout<<binary; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 325 ms | 524288 KB | Execution killed with signal 9 |
2 | Runtime error | 384 ms | 524288 KB | Execution killed with signal 9 |
3 | Runtime error | 400 ms | 524288 KB | Execution killed with signal 9 |
4 | Runtime error | 366 ms | 524288 KB | Execution killed with signal 9 |
5 | Runtime error | 660 ms | 524288 KB | Execution killed with signal 9 |
6 | Runtime error | 539 ms | 524288 KB | Execution killed with signal 9 |
7 | Runtime error | 1378 ms | 524288 KB | Execution killed with signal 9 |
8 | Runtime error | 1337 ms | 524288 KB | Execution killed with signal 9 |
9 | Runtime error | 1460 ms | 524288 KB | Execution killed with signal 9 |
10 | Runtime error | 1478 ms | 524288 KB | Execution killed with signal 9 |