Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
180591 C班-朱永裕 收集雨水 C++ 编译错误 0 0 MS 0 KB 957 2024-08-21 16:24:12

Tests(0/0):


#include <bits/stdc++.h> using namespace std; const int N=500050; int H[N],Stack[N]; //H[]保存身高,Stack[]为单调栈 long long Ans; //不能取int int top; //top指向单调栈顶 inline int Read(int ans=0,int f=0) { char c=getchar(); for(; c<'0' || c>'9'; f^=(c=='-'),c=getchar()); for(; c<='9' && c>='0'; c=getchar()) ans=(ans<<3)+(ans<<1)+(c^48); return f? -ans : ans; } void Calc(int x) //部分评测网站例如洛谷需二分优化 { int L=0,R=top,pos=0; while(L<=R) //因单调栈是递减的,所以可以二分查找 { int mid=(L+R)>>1; if(H[Stack[mid]]>x) pos=mid,L=mid+1; //查找pos,即x左边第一个比x高的人 else R=mid-1; } !pos? Ans+=top:Ans+=top-pos+1; //!pos表示没找到比x高的人 } int main() { int n=Read();


测评信息: