摘要:
思路:模板。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int dp[100005]; 8 int coms[505]; 9 int value[505];10 int max(int a,... 阅读全文
摘要:
思路:暴力搜,用BFS的方式,生成每一种可能,再对每一种可能进行判断是否回文,进行统计。严重超时!计算一个25个字符的,大概要20多秒! 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std... 阅读全文
摘要:
运算符优先级参考站点 点我直达 字符串与数字的互转: (1)atof 字符串→双精度浮点型 double atof (const char* str); (2)atoi 字符串→整型 int atoi (const char * str); (3)atol 字符串→整型 注意:long、int、lo 阅读全文