码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 4365 Palindrome graph(几何变换+快速幂)

时间:2015-08-06 00:39:43      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:acm   快速幂   计算几何   坐标变换   

HDU 4365

题意:给你一个n*n的画,然后每个格子图上任意k种颜色之一,要求通过翻转旋转后与原图保持一致,且原图已有m个格子有颜色。求有多少种涂法?

思路:

可以发现,我们所求的画是个高度轴对称和中心对称的图形,我们沿两根对称轴与两根中心对称轴把图案切成八份,那么决定其涂色方案只需考虑其中一份即可,若其中一份有x个格子那么答案即是k^x。

然而还有一个条件,即已经有m个格子涂上了颜色,那么我们将m个格子映射至之前选择的八分之一区域内,表明该格子颜色已固定,假设有y个格子颜色已固定,那么答案即是k^(x-y)。

求答案的过程中记得使用快速幂。。以及注意mod = 1e8+7,不是1e9+7..

code:

/*
* @author Novicer
* language : C++/C
*/
#include<iostream>
#include<sstream>
#include<fstream>
#include<vector>
#include<list>
#include<deque>
#include<queue>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cctype>
#include<cmath>
#include<ctime>
#include<iomanip>
#define INF 2147483647
#define cls(x) memset(x,0,sizeof(x))
#define rise(i,a,b) for(int i = a ; i <= b ; i++)
using namespace std;
const double eps(1e-8);
typedef long long lint;

const int maxm = 10000 + 5;
const lint mod = 1e8 + 7;
lint n,m,k;

map<lint , int> mp;
lint ans;
lint fast_pow(lint n , lint k){
	lint res = 1;
	while(k > 0){
		if(k&1) res = (res * n) % mod;
		k >>= 1;
		n = (n * n) % mod;
	}
	return res;
}

void change(int &x , int &y){
	while(1){
		if(x >= 0 && y >= 0 && x <= y && x <= n/2 && y <= n/2) break;
		if(x > n/2 && y > n/2){
			x = n - x + 1;
			y = n - y + 1;
		}
		if(x <= n/2 && y > n/2){
			y = n - y + 1;
		}
		if(x > n/2 && y <= n/2){
			x = n - x + 1;
		}
		if(x > y) swap(x,y);
	}
}
void solve(){
	mp.clear();
	if(n&1){
		ans = (n/2 + 2) * (n/2 + 1) / 2;
	}
	else ans = (n/2) * (n/2 + 1) / 2;
	for(int i = 1 ; i <= m ; i++){
		int x , y;
		scanf("%d%d",&x,&y);
		x++;y++;
		change(x,y);
		if(!mp[x + 10000*y]){
			mp[x + 10000*y] = 1;
			ans --;
		}
	}
	ans = fast_pow(k, ans) % mod;
	cout << ans <<  endl;
}
int main(){
	while(cin >> n >> m >> k){
		solve();
	}
	return 0;
}



版权声明:博主表示授权一切转载:)

HDU 4365 Palindrome graph(几何变换+快速幂)

标签:acm   快速幂   计算几何   坐标变换   

原文地址:http://blog.csdn.net/qq_15714857/article/details/47304841

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!