DP之八
摘要:
//sicily 1166. Computer Transformat#include<iostream> //DP+高精度using namespace std;#define M 50int Bit(int p){ if(p==0) return 1; int bit=0; while(p!=0) { p/=10; bit++; } return bit;}class Longint //高精度{public: Longint() { for(int ... 阅读全文
posted @ 2011-08-22 12:15 sysu_mjc 阅读(163) 评论(0) 推荐(0)
浙公网安备 33010602011771号