1 条题解
-
2端木俁 (房佳坤) LV 8 @ 2021-12-04 13:11:27
#include <cstdio> #include <queue> using namespace std; int main() { priority_queue<int, vector<int>, greater<int> > heap; int n; scanf("%d", &n); while ( n -- ) { int x; scanf("%d", &x); heap.push(x); } printf("%d", heap.top()); return 0; }
或
#include <iostream> using namespace std; int main() { int n; cin >> n; int res = 1 << 30; while ( n -- ) { static int x; cin >> x; res = min(res, x); } cout << res; return 0; }
- 1
信息
- 难度
- 2
- 分类
- (无)
- 标签
- 递交数
- 38
- 已通过
- 11
- 通过率
- 29%
- 上传者