首页 > 代码库 > 1289 大鱼吃小鱼
1289 大鱼吃小鱼
模拟,在这里用栈模拟,一开始用了结构体数组从首尾两端分别遍历果断超时,复杂度n*n,用栈来模拟是线性复杂度。
#include<iostream> #include<algorithm> #include<vector> #include<cstring> #include<cstdio> #include<queue> #include<cmath> #include<stack> #include<set> using namespace std; typedef long long LL; #define MAXN 100001 #define INF 0x3f3f3f3f int main() { LL n,temp,dir,ans; stack<LL> s; scanf("%lld",&n); ans = n; while(n--) { scanf("%lld%lld",&temp,&dir); if(dir==1) s.push(temp); else { while(!s.empty()) { if(s.top()<temp) { ans--; s.pop(); } else { ans--; break; } } } } printf("%lld\n",ans); return 0; }
1289 大鱼吃小鱼
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。