摘要:
阅读全文
摘要:
牛客练习赛78 A CCA的词典 签到, 注意 s[0] == s[1] int main() { IOS; cin >> n; multiset<string> st; rep (i ,1, n) { string s; cin >> s; st.insert(s); if (s.size() ! 阅读全文
摘要:
牛客练习赛76 A 罚时上天 A 校园活动 搜索 dp 都行, 别忘特判就行 int f[N][9 * N], a[N], s; int main() { scanf("%d", &n); rep (i, 1, n) scanf("%1d", a + i), s += a[i]; if (!s) { 阅读全文