(模擬 - 棧應用)1289 大魚吃小魚
阿新 • • 發佈:2018-11-11
1289 大魚吃小魚
- 1 秒
- 131,072 KB
- 5 分
- 1 級題
有N條魚每條魚的位置及大小均不同,他們沿著X軸遊動,有的向左,有的向右。遊動的速度是一樣的,兩條魚相遇大魚會吃掉小魚。從左到右給出每條魚的大小和遊動的方向(0表示向左,1表示向右)。問足夠長的時間之後,能剩下多少條魚?
收起
輸入
第1行:1個數N,表示魚的數量(1 <= N <= 100000)。 第2 - N + 1行:每行兩個數A[i], B[i],中間用空格分隔,分別表示魚的大小及遊動的方向(1 <= A[i] <= 10^9,B[i] = 0 或 1,0表示向左,1表示向右)。
輸出
輸出1個數,表示最終剩下的魚的數量。
輸入樣例
5 4 0 3 1 2 0 1 0 5 0
輸出樣例
2
題解: 用棧存放 向右遊動的魚,當遇到向左遊動的魚時,判斷棧頂元素與當前魚的大小,小則 出棧,魚數減一,大則魚數減一,跳出。
#include<set> #include<map> #include<list> #include<queue> #include<stack> #include<math.h> #include<vector> #include<bitset> #include<stdio.h> #include<stdlib.h> #include<string.h> #include<iostream> #include<algorithm> #define eps (1e-8) #define MAX 0x3f3f3f3f #define u_max 1844674407370955161 #define l_max 9223372036854775807 #define i_max 2147483647 #define re register #define pushup() tree[rt]=tree[rt<<1]+tree[rt<<1|1] #define nth(k,n) nth_element(a,a+k,a+n); // 將 第K大的放在k位 #define ko() for(int i=2;i<=n;i++) s=(s+k)%i // 約瑟夫 using namespace std; inline int read(){ char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {if(c == '-') f = -1; c = getchar();} while(c >= '0' & c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f; } typedef long long ll; const double pi = atan(1.)*4.; const int M=1e3+5; const int N=1e6+5; stack<int>ss; int main(){ int n,a,b; scanf("%d",&n); int ans=n; for(int i=0;i<n;i++){ scanf("%d %d",&a,&b); if(b==1) ss.push(a); else { while(!ss.empty()){ int g=ss.top(); if(g<a){ ans--; ss.pop(); } else{ ans--; break; } } } } printf("%d\n",ans); return 0; }