IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 小肥杨训练营——快速幂模板 -> 正文阅读

[数据结构与算法]小肥杨训练营——快速幂模板

P1897 电梯里的爱情

题目链接:https://www.luogu.com.cn/problem/P1897
在这里插入图片描述

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string>

using namespace std;

int a[100001];

/*
下一个人1s:+ns
每向上运行一层需要 6 秒钟:+h层*6
向下运行一层需要 4 秒钟:+h层*4
每开门一次需要 5 秒:+you层*5
*/

int main()
{
	int n,h,you=0,sum=0;
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		cin >> a[i];
	}
	sort(a, a + n);  

	int cnt = 0;
	for (int i = 0; i < n; i++)
	{
		if (a[i]==a[i+1])
		{
			continue;
		}
		else
		{
			you++;
		}
	}

	sum = n + a[n - 1] * 10 + you * 5;
	cout << sum;
	return 0;
}

P1428 小鱼比可爱

题目链接:https://www.luogu.com.cn/problem/P1428
在这里插入图片描述

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string>

using namespace std;

int a[101], b[101];
int main()
{
	int n;
	cin >> n;
	for (int i = 0; i < n; i++)
	{
		cin >> a[i];
	}
	// 挨个比
	for (int i = 0; i < n; i++)
	{
		for (int j = i; j >= 0; j--)
		{
			if (a[j] < a[i])
				b[i]++;
		}
	}
		
	for (int i = 0; i < n-1; i++) 
		cout << b[i] << " ";
	cout << b[n-1];	
		
	return 0;
}

P2676 [USACO07DEC]Bookshelf B

题目链接:https://www.luogu.com.cn/problem/P2676

在这里插入图片描述

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string>

using namespace std;

int h[20000];
int main()
{
	int n,b,cnt=0;
	cin >> n>>b;
	for (int i = 0; i < n; i++)
	{
		cin >> h[i];
	}
	sort(h,h+n);
	
	int stmp = 0;
	for (int i = n-1; i > 0; i--)
	{
		stmp += h[i];
		cnt++;
		if (stmp>b)
		{
			break;
		}
	}
	cout << cnt;
	return 0;
}

P4414 [COCI2006-2007#2] ABC

题目链接:https://www.luogu.com.cn/problem/P4414
在这里插入图片描述

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string>

using namespace std;

int a[3];
char c[3];
int main()
{
	cin >> a[0] >> a[1] >> a[2];
	cin >> c[0] >> c[1] >> c[2];
	sort(a, a + 3);
	cout << a[c[0] - 'A'] << " " << a[c[1] - 'A'] << " " << a[c[2] - 'A'];
	return 0;
}

P2637 第一次,第二次,成交

题目链接:https://www.luogu.com.cn/problem/P2637

在这里插入图片描述

#include<iostream>
#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<string>

using namespace std;

int pr[1001];
int main()
{
	int m, n,price=0,max=0;
	cin >> n >> m;
	for (int i = 0; i < n; i++)
	{
		cin >> pr[i];
	}
	sort(pr,pr+n);
	for (int i = n-1; i > 0; i--)
	{
		if ((n-i)*pr[i]>max)
		{
			max = (n - i)*pr[i];
			price = pr[i];
		}
	}
	cout << price << " " << max;

	return 0;
}

P1226 【模板】快速幂||取余运算

题目链接:https://www.luogu.com.cn/problem/P1226
在这里插入图片描述

快速幂函数模板

ll fast_power(ll a, ll b, ll c)
{
	ll ans = 1;
	a %= c;
	while (b)
	{
		// b 指数是奇数
		if (b & 1)
		{
			ans = (ans * a) % c;	// 指数加1
		}
		a = (a * a) % c;
		b >>= 1;
	}

	return ans;
}

快速幂函数模板原理

看这个视频自学,整理算法没劲,懒得再写了:https://www.bilibili.com/video/BV12r4y1w7tx

【C++/算法】快速幂算法详解

视频中代码:

// 降幂
ll fast_power(ll a,ll b, ll c)
{
	ll ans = 1;
	while (b)
	{
		// b 指数是奇数
		if (b%2==1)
		{
			ans = ans*a;	// 指数加1
			a = a * a;
			b / 2;
		}
		else	// b是偶数
		{
			a = a * a;;
			b / 2;
		}
	}

	return ans;
}

// 对每一步都取余
ll fast_power(ll a, ll b, ll c)
{
	ll ans = 1;

	while (b)
	{
		// b 指数是奇数
		if (b % 2 == 1)
		{
			ans = (ans * a)%c;	// 指数加1
		}
		a = (a * a)%c;
		b / 2;
	}

	return ans;
}

// 最终
ll fast_power(ll a, ll b, ll c)
{
	ll ans = 1;
	a %= c;
	while (b)
	{
		// b 指数是奇数
		if (b & 1)
		{
			ans = (ans * a) % c;	// 指数加1
		}
		a = (a * a) % c;
		b >>= 1;
	}

	return ans;
}
  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-01-12 00:15:37  更:2022-01-12 00:18:10 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 18:25:58-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码