Dili_iiii

编码全要靠底力

摘要: namespace fastIO { #define BUF_SIZE 100000 //fread -> read bool IOerror = 0; inline char nc() { static char buf[BUF_SIZE], *p1 = buf + BUF_SIZE, *pend = buf + BUF_SIZE; ... 阅读全文
posted @ 2019-07-03 17:08 Dili_iiii 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 题目描述 现在请求你维护一个数列,要求提供以下两种操作: 1、 查询操作。 语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值。 限制:LL不超过当前数列的长度。(L > 0)(L>0) 2、 插入操作。 语法:A n 功能:将nn加上tt,其中tt是最近一次查询操作的答案( 阅读全文
posted @ 2019-07-03 17:07 Dili_iiii 阅读(462) 评论(0) 推荐(1) 编辑