[USACO08NOV]光开关Light Switching&&[TJOI2009]开关

题目描述

Farmer John tries to keep the cows sharp by letting them play with intellectual toys. One of the larger toys is the lights in the barn. Each of the N (2 <= N <= 100,000) cow stalls conveniently numbered 1..N has a colorful light above it.

At the beginning of the evening, all the lights are off. The cows control the lights with a set of N pushbutton switches that toggle the lights; pushing switch i changes the state of light i from off to on or from on to off.

The cows read and execute a list of M (1 <= M <= 100,000) operations expressed as one of two integers (0 <= operation <= 1).

The first kind of operation (denoted by a 0 command) includes two subsequent integers S_i and E_i (1 <= S_i <= E_i <= N) that indicate a starting switch and ending switch. They execute the operation by pushing each pushbutton from S_i through E_i inclusive exactly once.

The second kind of operation (denoted by a 1 command) asks the cows to count how many lights are on in the range given by two integers S_i and E_i (1 <= S_i <= E_i <= N) which specify the inclusive range in which the cows should count the number of lights that are on.

Help FJ ensure the cows are getting the correct answer by processing the list and producing the proper counts.

灯是由高科技——外星人鼠标操控的。你只要左击两个灯所连的鼠标,这两个灯,以及之间的灯都会由暗变亮,或由亮变暗。右击两个灯所连的鼠标,你就可以知道这两个灯,以及之间的灯有多少灯是亮的。起初所有灯都是暗的,你的任务是在LZ之前算出灯的亮灭。

输入输出格式

输入格式:

第1 行: 用空格隔开的两个整数N 和M,n 是灯数

第2..M+1 行: 每行表示一个操作, 有三个用空格分开的整数: 指令号, S_i 和E_i

第1 种指令(用0 表示)包含两个数字S_i 和E_i (1 <= S_i <= E_i <= N), 它们表示起始开关和终止开关. 表示左击

第2 种指令(用1 表示)同样包含两个数字S_i 和E_i (1 <= S_i <= E_i <= N), 不过这种指令是询问从S_i 到E_i 之间的灯有多少是亮着的.

输出格式:

输入输出样例

输入样例#1:

4 5 0 1 2 0 2 4 1 2 3 0 2 4 1 1 4

输出样例#1:

1 2

solution

显然是一道线段树啦,总感觉和洛谷P2574 XOR的艺术那么想,开灯和关灯就相当于xor1那这道题和线段树裸题的区别无非就是lazytag的地方,也没什么其他的难点了

初一时写的丑陋的代码
#include<bits/stdc++.h>

using namespace std;

const int MAXN = 2* 100000;

struct node
{
    int l;
    int r;
    long long sum;
    int len;
    inline int mid()
    {
        return (l+r)>>1;
    }
};node tree[MAXN*4];

int add[MAXN*4];

inline int read()
{
    char ch;
    int fl=1;
    int x=0;
    do{
      ch= getchar();
      if(ch=='-')
        fl=-1;
    }while(ch<'0'||ch>'9');
    do{
        x=(x<<3)+(x<<1)+ch-'0';
        ch=getchar();
    }while(ch>='0'&&ch<='9');
    return x*fl;
}

int n,m;

int a[MAXN]; 

int op,x,y;

int ans;

inline void pushdown(int now)
{
    if(!add[now]) return;
    int lc=now<<1,rc=now<<1|1;
    add[lc]^=1;
    add[rc]^=1;
    tree[lc].sum=(tree[lc].len)-tree[lc].sum;
    tree[rc].sum=(tree[rc].len)-tree[rc].sum;
    add[now]=0;
    return;
}

inline void make(int l,int r,int now)
{
    tree[now].l=l;
    tree[now].r=r;
    tree[now].len=tree[now].r-tree[now].l+1;
    if(l==r) 
    {
        tree[now].sum=a[l];
        return;
    } 
    else
    {
        int mid=tree[now].mid();
        make(l,mid,now<<1);
        make(mid+1,r,now<<1|1);
        tree[now].sum=tree[now<<1].sum+tree[now<<1|1].sum;
        return; 
    }
}

inline void xg(int now,int y,int z)
{
    int lc=now<<1,rc=now<<1|1;
    int l=tree[now].l,r=tree[now].r;
    if(l>z||y>r) return;
    if(y<=l&&r<=z) 
    {
        tree[now].sum=tree[now].len-tree[now].sum;
        add[now]^=1;
        return;
    }
    else
    {
        if(add[now]) pushdown(now);
        xg(lc,y,z);
        xg(rc,y,z);
        tree[now].sum=tree[lc].sum+tree[rc].sum;  
    }
}

inline void question(int now,int x,int y)
{
    int lc=now<<1,rc=now<<1|1;
    int l=tree[now].l;
    int r=tree[now].r;
    if(l>y||x>r) return;
    if(x<=l&&r<=y)
    {
        ans+=tree[now].sum;
        return;
    }
    else
    {
        if(add[now]) pushdown(now);
        question(lc,x,y);
        question(rc,x,y);
        return;
    }
}

int main()
{
    n=read();
    m=read();
    for(int i=1;i<=n;i++)
        a[i]=0;
    make(1,n,1);
    for(int i=1;i<=m;i++)
    {
        op=read();
        x=read();
        y=read();
        ans=0;
        if(op==0) xg(1,x,y);
        else  question(1,x,y),cout<<ans<<endl;
    }
}

 

转载于:https://www.cnblogs.com/wlzs1432/p/8870184.html

内容概要:本文系统介绍了算术优化算法(AOA)的基本原理、核心思想及Python实现方法,并通过图像分割的实际案例展示了其应用价值。AOA是一种基于种群的元启发式算法,其核心思想来源于四则运算,利用乘除运算进行全局勘探,加减运算进行局部开发,通过数学优化器加速函数(MOA)和数学优化概率(MOP)动态控制搜索过程,在全局探索与局部开发之间实现平衡。文章详细解析了算法的初始化、勘探与开发阶段的更新策略,并提供了完整的Python代码实现,结合Rastrigin函数进行测试验证。进一步地,以Flask框架搭建前后端分离系统,将AOA应用于图像分割任务,展示了其在实际工程中的可行性与高效性。最后,通过收敛速度、寻优精度等指标评估算法性能,并提出自适应参数调整、模型优化和并行计算等改进策略。; 适合人群:具备一定Python编程基础和优化算法基础知识的高校学生、科研人员及工程技术人员,尤其适合从事人工智能、图像处理、智能优化等领域的从业者;; 使用场景及目标:①理解元启发式算法的设计思想与实现机制;②掌握AOA在函数优化、图像分割等实际问题中的建模与求解方法;③学习如何将优化算法集成到Web系统中实现工程化应用;④为算法性能评估与改进提供实践参考; 阅读建议:建议读者结合代码逐行调试,深入理解算法流程中MOA与MOP的作用机制,尝试在不同测试函数上运行算法以观察性能差异,并可进一步扩展图像分割模块,引入更复杂的预处理或后处理技术以提升分割效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值