小红的奇偶抽取
题目描述
题解
#include <iostream>
#include<stack>
using namespace std;int main() {long long n;stack <int> ji, ou;cin >> n;while (n) {int a = n % 10;if (a % 2 == 0)ou.push(a);elseji.push(a);n = n / 10;}long long jN = 0, oN = 0;while (!ji.empty()) {jN = jN * 10 + ji.top();ji.pop();}while (!ou.empty()) {oN = oN * 10 + ou.top();ou.pop();}cout << abs(jN - oN) << endl;
}
// 64 位输出请用 printf("%lld")
反思
- 这个题没做出来是因为:第一时间读题读错了,理解成奇数位和偶数位之和了。
- 第一时间没想起来用stack来存储数字,而是使用vector(但是也问题不大,就是有点呆)
- 最重要的:这个题目要使用long long 来存储输入和记录奇数和偶数,最后没有通过全部示例。输在心态、细心。加油加油。
小红的XXX
这题没看全,白卷。
小红的好串
题目描述
解题思路
一开始打算用回溯法做,但是超时了,因为是2^n的复杂度。。。
超时以后我发现有组合数的这个办法,但是没有时间写完了。
题解
今天补上。
没有找到原题链接,不确定过不过,但是思路是对的应该。可能出问题的地方就在C(n,m)计算。(如果有原题链接的uu,跪求)
#include <vector>
#include <iostream>
#include <string>
using namespace std;
// 用于计算 C(n,m)
long long myC(int n, int m, const int mod = 1);int main()
{string str;cin >> str;vector<int> Count(26, 0);for (auto c : str)Count[c - 'a']++;for (auto c : Count)cout << c << " ";cout << endl;long long ans = 1;const long mod = (1e9 + 7);for (auto c : Count){if (c == 0)continue;int sum = 0;for (int i = 0; i <= c; i += 2){sum += myC(c, i);}ans *= sum;// cout << "sum:" << sum << endl;ans %= mod;}cout << ans - 1 << endl;return 0;
}long long myC(int n, int m, const int mod)
{if (n == 0 || m == 0)return 1;// cout << "calculating:C(" << n << ", " << m << "):";m = min(m, n - m);int down = m;long long ans = 1;int count = m;while (count-- > 0){ans *= n--;// for sure : ans>downwhile (down != 0 && ans % down == 0)ans /= down--;}// cout << ans << endl;return ans;
}
感受
今天是我第一次真正意义上做笔试题,感觉跟平时练的还是不一样的。
- 这个测试是先选择题,后编程题,我一开始在选择题上墨迹了不少时间,没有做好整体时间的分配。
- 整体不够细心,第一题小红的奇偶抽取其实是很简单的(事后看)。主要是stack和 long long 的运用,这两个知识点我其实是知道的,如果审题仔细一点,第一题肯定能拿下,第三题可以争取(第二题题目都没看)。
- ACM模式没有不太熟悉,下周一百度面试是核心代码模式,周三华为实习的笔试 也是ACM模式,这几天需要找时间熟悉一下。