AcWing - 249 - 蒲公英 = 分块

https://www.acwing.com/problem/content/251/

题意:给一段长度至多40000的序列,每次强制在线访问一段区间[L,R],询问区间的众数(若有多个,输出最小的),询问至多50000次。

思路:lyd给的方法一,一种全新的分块思路。众数不可以通过线段树操控,当然也不可以又多个块的众数合并而得。这种全新的思路是用长短不一的大块去覆盖整个区间。每次访问的时候找到包含于询问区间的最大的大块,直接在大块上面修改并统计,最后撤销修改。
细节蛮多的。

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

int n;
int a[40005];
int rnk[40005], ele;

struct Block {
    int L, R;
    int cnt[40005];
    int maxcnt, maxcntid;
    void Build(int _L, int _R) {
        L = _L, R = _R;
        memset(cnt, 0, sizeof(cnt[0]) * (ele + 1));
        maxcnt = 0, maxcntid = -1;
        for(int i = L; i <= R; ++i) {
            cnt[a[i]]++;
            if(cnt[a[i]] > maxcnt || cnt[a[i]] == maxcnt && a[i] <= maxcntid) {
                maxcnt = cnt[a[i]];
                maxcntid = a[i];
            }
        }
    }
} block[1800];

int T = 1000, btop;

void Build() {
    btop = 0;
    for(int L = 1; L <= n; L += T) {
        for(int R = L - 1 + T;; R += T) {
            if(R > n)
                R = n;
            //printf("[%d,%d]\n", L, R);
            block[++btop].Build(L, R);
            if(R == n)
                break;
        }
    }
}

int X;
void Query(int L, int R) {
    int bL = ((L + T - 1) / T * T) + 1;
    int bR = R / T * T;
    int id = -1;
    if(bR < bL) {
        id = 0;
        int curcnt = 0, curcntid = 1e9;
        for(int i = L; i <= R; ++i) {
            block[id].cnt[a[i]]++;
            if(block[id].cnt[a[i]] > curcnt || block[id].cnt[a[i]] == curcnt && a[i] <= curcntid) {
                curcnt = block[id].cnt[a[i]];
                curcntid = a[i];
            }
        }
        for(int i = L; i <= R; ++i)
            block[id].cnt[a[i]]--;

        X = rnk[curcntid];
        printf("%d\n", X);
    } else {
        //printf("bL=%d bR=%d\n", bL, bR);
        for(int i = 1; i <= btop; ++i) {
            if(block[i].L == bL && block[i].R == bR) {
                id = i;
                break;
            }
        }
        int curcnt = block[id].maxcnt, curcntid = block[id].maxcntid;
        for(int i = L; i < bL; ++i) {
            block[id].cnt[a[i]]++;
            if(block[id].cnt[a[i]] > curcnt || block[id].cnt[a[i]] == curcnt && a[i] <= curcntid) {
                curcnt = block[id].cnt[a[i]];
                curcntid = a[i];
            }
        }
        for(int i = bR + 1; i <= R; ++i) {
            block[id].cnt[a[i]]++;
            if(block[id].cnt[a[i]] > curcnt || block[id].cnt[a[i]] == curcnt && a[i] <= curcntid) {
                curcnt = block[id].cnt[a[i]];
                curcntid = a[i];
            }
        }
        for(int i = L; i < bL; ++i)
            block[id].cnt[a[i]]--;
        for(int i = bR + 1; i <= R; ++i)
            block[id].cnt[a[i]]--;

        X = rnk[curcntid];
        printf("%d\n", X);
    }
}

int main() {
#ifdef Yinku
    freopen("Yinku.in", "r", stdin);
#endif // Yinku
    X = 0;
    int m;
    scanf("%d%d", &n, &m);
    for(int i = 1; i <= n; ++i) {
        scanf("%d", &a[i]);
        rnk[i] = a[i];
    }
    sort(rnk + 1, rnk + 1 + n);
    ele = unique(rnk + 1, rnk + 1 + n) - (rnk + 1);
    for(int i = 1; i <= n; ++i)
        a[i] = lower_bound(rnk + 1, rnk + 1 + ele, a[i]) - rnk;

    Build();
    while(m--) {
        int L, R;
        scanf("%d%d", &L, &R);
        L = (L + X - 1) % n + 1;
        R = (R + X - 1) % n + 1;
        if(L > R)
            swap(L, R);
        Query(L, R);
    }

    return 0;
}

转载于:https://www.cnblogs.com/Inko/p/11426964.html

好的,我会尽力回答你的问题。以下是一个超简单配置Android持续集成自动化打包流程 - GitHub+GitLab-CI+蒲公英+钉钉 的步骤: 1. 在 GitHub 创建一个新的 repository,将你的 Android 项目代码上传到该仓库中。 2. 在 GitLab 中创建一个新的项目,并将该项目与 GitHub 中的相应仓库进行关联。 3. 在 GitLab 中创建一个新的 .gitlab-ci.yml 文件,用于配置持续集成自动化打包流程。以下是一个示例文件: ```yml image: openjdk:8-jdk stages: - build - deploy before_script: - chmod +x ./gradlew build: stage: build script: - ./gradlew assembleDebug artifacts: paths: - app/build/outputs/apk/debug/app-debug.apk deploy: stage: deploy script: - curl -F "file=@app/build/outputs/apk/debug/app-debug.apk" -F "uKey=YOUR_UKEY" -F "_api_key=YOUR_API_KEY" https://www.pgyer.com/apiv2/app/upload - curl -X POST -H 'Content-type: application/json' --data '{"msgtype":"text","text":{"content":"Android自动化打包完成,请前往蒲公英下载最新版本!"}}' https://oapi.dingtalk.com/robot/send?access_token=YOUR_ACCESS_TOKEN ``` 4. 在蒲公英网站中创建一个新的应用,并将该应用的 uKey 和 api_key 配置到 .gitlab-ci.yml 文件中的 deploy 阶段中。 5. 在钉钉开发者后台中创建一个新的机器人,并将该机器人的 access_token 配置到 .gitlab-ci.yml 文件中的 deploy 阶段中。 6. 确保 GitLab CI/CD Runner 已经正确地安装在你的 Android 项目所在的服务器上,然后在 GitLab 中启用 Runner。 7. 每次你向 GitHub 中的仓库提交新的代码时,GitLab CI/CD Runner 将会自动触发持续集成自动化打包流程,并将最新的 APK 文件上传到蒲公英网站,并通过钉钉机器人发送通知消息。 希望这些步骤能够对你有所帮助!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值