Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
156414 李树强 构造链表二叉树 C++ 输出超限 0 0 MS 296 KB 457 2024-07-17 11:22:51

Tests(0/10):


#include<iostream> using namespace std; const int N = (1 << 20) + 10; int n, a[N], t, mx = 0; void insert(int root, int x){ mx = max(root, mx); if(a[root] == 0){ a[root] = x; return; } if(a[root] > x) insert(root * 2, x); else insert(root * 2 + 1, x); } int main(){ int n; cin >> n; for(int i = 0; i < n; i++){ cin >> t; insert(1, t); } for(int i = 1; i <= mx; i++){ cout << a[i] << ' '; } return 0; }


测评信息: