hdu5175---Misaki's Kiss again

本文介绍了一个有趣的算法挑战,参与者需要帮助Misaki找出所有符合条件的M值,使得GCD(N,M)=N XOR M成立。通过分析和编程实现,文章提供了一种有效的解决方案。

Problem Description
After the Ferries Wheel, many friends hope to receive the Misaki’s kiss again,so Misaki numbers them 1,2…N−1,N,if someone’s number is M and satisfied the GCD(N,M) equals to N XOR M,he will be kissed again.

Please help Misaki to find all M(1<=M<=N).

Note that:
GCD(a,b) means the greatest common divisor of a and b.
A XOR B means A exclusive or B

Input
There are multiple test cases.

For each testcase, contains a integets N(0

/*************************************************************************
    > File Name: bc30-b.cpp
    > Author: ALex
    > Mail: zchao1995@gmail.com 
    > Created Time: 2015年02月14日 星期六 19时32分44秒
 ************************************************************************/

#include <map>
#include <set>
#include <queue>
#include <stack>
#include <vector>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

const double pi = acos(-1);
const int inf = 0x3f3f3f3f;
const double eps = 1e-15;
typedef long long LL;
typedef pair <int, int> PLL;

vector <LL> yueshu, ans;

LL gcd (LL A, LL B)
{
    return B ? gcd (B, A % B) : A;
}

int main ()
{
    LL n;
    int icase = 1;
    while (~scanf("%I64d", &n))
    {
        yueshu.clear();
        int tmp = sqrt(n + 0.5);
        for (int i = 1; i <= tmp; ++i)
        {
            if (n % i == 0)
            {
                yueshu.push_back (i);
                if (i != n / i)
                {
                    yueshu.push_back (n / i);
                }
            }
        }
        ans.clear();
        int size = yueshu.size();
        for (int i = 0; i < size; ++i)
        {
            LL u = yueshu[i];
            if ((u ^ n) <= n && (u ^ n) != 0 && gcd (n, u ^ n) == u)
            {
                ans.push_back (u ^ n);
            }
        }
        printf("Case #%d:\n", icase++);
        size = ans.size();
        sort (ans.begin(), ans.end());
        printf("%d\n", size);
        if (size != 0)
        {
            printf("%I64d", ans[0]);
            for (int i = 1; i < size; ++i)
            {
                if (ans[i] == ans[i - 1])
                {
                    continue;
                }
                printf(" %I64d", ans[i]);
            }
        }
        printf("\n");
    }
    return 0;
}
多源动态最优潮流的分布鲁棒优化方法(IEEE118节点)(Matlab代码实现)内容概要:本文介绍了基于Matlab代码实现的多源动态最优潮流的分布鲁棒优化方法,适用于IEEE118节点电力系统。该方法结合两阶段鲁棒模型与确定性模型,旨在应对电力系统中多源输入(如可再生能源)的不确定性,提升系统运行的安全性与经济性。文中详细阐述了分布鲁棒优化的建模思路,包括不确定性集合的构建、目标函数的设计以及约束条件的处理,并通过Matlab编程实现算法求解,提供了完整的仿真流程与结果分析。此外,文档还列举了大量相关电力系统优化研究案例,涵盖微电网调度、电动汽车集群并网、需求响应、储能配置等多个方向,展示了其在实际工程中的广泛应用价值。; 适合人群:具备一定电力系统基础知识和Matlab编程能力的研究生、科研人员及从事能源系统优化工作的工程师。; 使用场景及目标:①用于研究高比例可再生能源接入背景下电力系统的动态最优潮流问题;②支撑科研工作中对分布鲁棒优化模型的复现与改进;③为电力系统调度、规划及运行决策提供理论支持与仿真工具。; 阅读建议:建议读者结合提供的Matlab代码与IEEE118节点系统参数进行实操演练,深入理解分布鲁棒优化的建模逻辑与求解过程,同时可参考文中提及的其他优化案例拓展研究思路。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值