| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 142705 | 谢思涵 | 音乐会 | C++ | Time Limit Exceeded | 90 | 1986 MS | 368 KB | 386 | 2024-04-08 20:50:28 |
#include<stack> #include<iostream> 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; }