Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
180612 | A班卞定熙 | 音乐会 | C++ | 运行超时 | 50 | 1000 MS | 352 KB | 382 | 2024-08-21 16:32:34 |
#include <bits/stdc++.h> using namespace std; int x,n,ans; stack<int>s; int main() { cin>>n; 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; }