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

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

CodeForces1208A

不得不承认,这题猛地一看吓到我了,吓得我直接看了\(B\)题,要不是\(B\)也吓到我了我就直接做\(B\)了.

打打表,找一找,你会发现,这玩意三个一循环,所以就只需要算\(f_0,f_1,f_2\)就完了,输出\(f_{n \% 3}\).

完美解决.

CodeForces1208B

由于\(A\)实在太水了,所以我打算这两道题放在一起.

不得不承认,这题也吓到我了,这直接导致我滚回去做\(A\)了.
其实也并不难,这题一般都能想到二分区间长度,然后枚举左端点,把这一部分硬拆出来判断,用桶记录就行了.
但是这题的症结在于开桶的话空间是负担不起的.
但我们发现,尽管值域很广,但是不同的数字地个数并不会超过\(n\),而\(n\)的数量级是\(10^3\)级别的,所以我们直接离散化就好了.

\(Code:\)

#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_back#define mid ( ( l + r ) >> 1 ) using std::set ;using std::pair ;using std::max ;using std::min ;using std::priority_queue ;using std::vector ; 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 ;} const int N = 2e3 + 100 ; int n , l , r , ans = 0x3f3f3f3f , val[N] , idx ;bool f , mk[N] ; struct pairs { int data , pos ; } v[N] ; inline bool check (int d) { for (int i = 1 ; i <= n - d + 1 ; ++ i){ f = true ; MEM ( mk , 0 ) ; for (int j = 1 ; j < i && f ; ++ j) if ( mk[val[j]] ) f = false ; else mk[val[j]] = true ; if ( ! f ) continue ; for (int j= i + d ; j <= n && f ; ++ j) if ( mk[val[j]] ) f = false ; else mk[val[j]] = true ; if ( f ) return true ; } return false ;} inline bool cmp (pairs a , pairs b) { if ( a.data != b.data ) return a.data < b.data ; else return a.pos < b.pos ;} signed main () { n = rint () ; rep ( i , 1 , n ) { v[i].data = rint () ; v[i].pos = i ; } r = n - 1 ; std::sort ( v + 1 , v + n + 1 , cmp ) ; idx = 0 ; rep ( i , 1 , n ) if ( v[i].data != v[i-1].data ) val[v[i].pos] = ++ idx ; else val[v[i].pos] = idx ; while ( l <= r ) { if ( check ( mid ) ) ans = mid , r = mid - 1 ; else l = mid + 1 ; } printf ("%I64d\n" , ans ) ; // I64d是因为CF只支持这玩意儿,不支持lld return 0 ;}

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

你可能感兴趣的文章
Spring框架+Struts2框架第一次整合
查看>>
Django之ORM操作(聚合 分组、F Q)
查看>>
RabbitMQ系列之Centos 7安装RabbitMQ 3.6.1
查看>>
如何实现自定义同步组件
查看>>
用html5+flash两种方案实现前端长文转图
查看>>
测试记录
查看>>
codeforces 580D. Kefa and Dishes
查看>>
Java 中使用MySQL
查看>>
解决使用SecureCRT出现的Generic clipboard failure错误
查看>>
POJ 1816
查看>>
javascript 错误处理
查看>>
Django_Form表单补充
查看>>
Sql Server 2008常用操作系列 - 日期转字符串,可用格式列表
查看>>
Linux常用命令
查看>>
Spark Streaming中的操作函数分析
查看>>
《那些年啊,那些事——一个程序员的奋斗史》十二
查看>>
Vue 使用axios获取数据
查看>>
JS拖动技术--- 关于setCapture
查看>>
CentOS 7 服务器配置--安装nginx
查看>>
json数据在前端(javascript)和后端(php)转换
查看>>