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

super-pow

时间:2016-07-10 15:12:26      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

// https://discuss.leetcode.com/topic/50489/c-clean-and-short-solution

class Solution {
    int base = 1337;
    int powMod(int a, int b) {
        a %= base;
        int result = 1;
        for (int i=0; i<b; i++) {
            result *= a;
            result %= base;
        }
        return result;
    }
    
public:
    int superPow(int a, vector<int>& b) {
        if (b.empty()) {
            return 1;
        }
        int t = b.back();
        b.pop_back();
        
        return (powMod(superPow(a, b), 10) * powMod(a, t)) % base;
        
    }
};

 

super-pow

标签:

原文地址:http://www.cnblogs.com/charlesblc/p/5657615.html

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