您当前的位置: 首页 >  ar

*DDL_GzmBlog

暂无认证

  • 2浏览

    0关注

    605博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

[cf] B. Divine Array 特殊模拟

*DDL_GzmBlog 发布时间:2021-10-28 21:47:27 ,浏览量:2

前言

完蛋,B都这么难,我感觉我要废了,加油啊 传送门 :

思路

因为每次都要变

总共不会超过 n n n次

因此我们可以直接模拟

CODE
// Problem: B. Divine Array
// Contest: Codeforces - Codeforces Round #751 (Div. 2)
// URL: https://codeforces.com/contest/1602/problem/B
// Memory Limit: 256 MB
// Time Limit: 2000 ms
//
// Powered by CP Editor (https://cpeditor.org)

#include 
using namespace std;
#define ll long long
#define endl '\n'
#define px first
#define py second

typedef pair pii;
int dxy[4][2] = {{-1,0},{0,1},{1,0},{0,-1}};
const int N  = 2e3+10;

int a[N];
int b[N][N],cnt[N];
int n,m,t;

void solve()
{
    cin>>n;
    for(int i = 1; i >a[i],b[0][i] = a[i];
    for(int j = 1; j >x>>k;
        k = min(k,n);
        cout            
关注
打赏
1657615554
查看更多评论
0.0420s