博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces1214B
阅读量:5288 次
发布时间:2019-06-14

本文共 1497 字,大约阅读时间需要 4 分钟。

注意一下男生女生的人数都是有上下界的就行了,水题.

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define MEM(x,y) memset ( x , y , sizeof ( x ) )#define rep(i,a,b) for (int i = a ; i <= b ; ++ i)#define per(i,a,b) for (int i = a ; i >= b ; -- i)#define pii pair < int , int >#define X first#define Y second#define rint read
#define int long long#define pb push_backusing std::set ;using std::pair ;using std::max ;using std::min ;using std::priority_queue ;using std::vector ;using std::swap ;using std::sort ;using std::unique ;using std::greater ;template < class T > inline T read () { T x = 0 , f = 1 ; char ch = getchar () ; while ( ch < '0' || ch > '9' ) { if ( ch == '-' ) f = - 1 ; ch = getchar () ; } while ( ch >= '0' && ch <= '9' ) { x = ( x << 3 ) + ( x << 1 ) + ( ch - 48 ) ; ch = getchar () ; } return f * x ;}template < class T > inline void write (T x) { static T stk[100] , top = 0; if (x == 0) { putchar ('0') ; return ; } if (x < 0) { x = - x ; putchar ( '-' ) ; } while (x) { stk[++top] = x % 10 ; x /= 10 ; } while (top) { putchar ( stk[top--] + '0') ; } putchar ( 10 ) ; }int b , g , n , ans , lb ;signed main (int argc , char * argv[] ) { b = rint () ; g = rint () ; n = rint () ; if ( g < n ) lb = n - g ; rep ( i , lb , min ( n , b ) ) ++ ans ; write ( ans ) ; return 0 ;}

转载于:https://www.cnblogs.com/Equinox-Flower/p/11469102.html

你可能感兴趣的文章
查看cuda版本和cudann
查看>>
eclipse 开始运行提示 Java was started but returned exit code=13
查看>>
预编译scss以及scss和less px 转rem
查看>>
git 问题记录
查看>>
word vba 1 页面视图
查看>>
系统变量和环境变量的区别
查看>>
现代科技高管李刚去向已不再是迷
查看>>
try…catch 结构
查看>>
JavaBean
查看>>
【交题大桥】团队信息存档
查看>>
柯里化
查看>>
【Java】Jackson解析xml的坑
查看>>
javaTest04
查看>>
linux / shell /adb
查看>>
“新智认知”杯上海高校程序设计竞赛暨第十七届上海大学程序设计春季联赛(D题,贪心+栈)...
查看>>
c/c++ 线性栈
查看>>
6月1日PM
查看>>
实验二 网络嗅探实验
查看>>
基于swoole的网页一对一实时聊天
查看>>
环境搭建
查看>>