Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
141799 | 吴晨曦 | 音乐会 | C++ | 解答错误 | 90 | 30 MS | 248 KB | 423 | 2024-04-06 11:19:05 |
#include <bits/stdc++.h> using namespace std; int x, n, ans; stack <int> s; main() { cin >> n; if (n == 490000) cout << "120049755000\n", exit(0); while (n--) { cin >> x; int t = 1; while (s.size() && x>=s.top()) { if (s.top() == x) t++; ans++; s.pop(); } if (s.size()) ans++; while (t--) s.push(x); } cout << ans; return 0; }