AcWing 1843. 圆形牛棚(暴力+枚举)

Posted MangataTS

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 1843. 圆形牛棚(暴力+枚举)相关的知识,希望对你有一定的参考价值。

题目链接

https://www.acwing.com/problem/content/description/1845/

思路

因为n的范围很小(只有100),我们枚举每个点作为奶牛的进场点即可,然后因为只能走到下一个牛棚,所以我们只需要循环一次就好啦,单次查找复杂度 O ( N ) O(N) O(N),总复杂度 O ( N 2 ) O(N^2) O(N2)

代码

#include<bits/stdc++.h>
using namespace std;
//----------------自定义部分----------------
#define ll long long
#define mod 1000000007
#define endl "\\n"
#define PII pair<int,int>

int dx[4]=0,-1,0,1,dy[4]=-1,0,1,0;

ll ksm(ll a,ll b) 
	ll ans = 1;
	for(;b;b>>=1LL) 
		if(b & 1) ans = ans * a % mod;
		a = a * a % mod;
	
	return ans;


ll lowbit(ll x)return -x & x;

const int N = 2e6+10;
//----------------自定义部分----------------
int n,m,q,a[N];

int slove(int loc)
	int ans = 0;
	for(int i = loc,j = 0; j < n; i = (i + 1) % n,++j)
		ans += a[i] * j;
	
	return ans;



int main()

	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
	std::cout.tie(nullptr);
	cin>>n;
	for(int i = 0;i < n; ++i) 
		cin>>a[i];
	
	int ans = 0x3f3f3f3f;
	for(int i = 0;i < n; ++i) 
		ans = min(slove(i),ans);
	
	cout<<ans<<endl;
	
	return 0;

以上是关于AcWing 1843. 圆形牛棚(暴力+枚举)的主要内容,如果未能解决你的问题,请参考以下文章

AcWing 1813. 方块游戏(暴力枚举)

AcWing 1855. 愤怒的奶牛(枚举+暴力)

AcWing 1875. 贝茜的报复(数学+暴力枚举)

AcWing 2058. 笨拙的手指(暴力枚举)

AcWing 1750. 救生员(差分+暴力枚举)

AcWing 1776. 牛的基因组学(STL+枚举)