赞
踩
#include <iostream>
using namespace std;
int main()
{
cout << "I'm gonna win! Today!" << endl;
cout << "2022-04-23" << endl;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int n , v;
cin >> n >> v;
cout << n / v;
return 0;
}
#include <iostream> using namespace std; int main() { int j , p , x1 , x2; cin >> j >> p >> x1 >> x2; if(x1 >= j || (x1 < j && x2 >= p)) cout << x1 << "-Y "; else cout << x1 << "-N "; if(x2 >= j|| (x2 < j && x1 >= p)) cout << x2 << "-Y\n"; else cout << x2 << "-N\n"; if(x1 >= j && x2 >= j) { cout << "huan ying ru guan\n"; } else if(x1 < j && x2 < j) { cout << "zhang da zai lai ba\n"; } else if(x1 < j && x2 >= p) { printf("qing 2 zhao gu hao 1\n"); } else if(x2 < j && x1 >= p) { printf("qing 1 zhao gu hao 2\n"); } else if(x1 >= j && x2 < j && x1 < p) {//一开始这里没考虑清楚,最后一分钟发现错误~ printf("1: huan ying ru guan\n"); } else if(x2 >= j && x1 < j && x2 < p) { printf("2: huan ying ru guan\n"); } return 0; }
#include <iostream> using namespace std; long long f(int n)//最好写成long long , 防止数据溢出 { long long t = 1; for(int i = 1 ; i <= n ; ++i) t *= i; return t; } int main() { int a , b; cin >> a >> b; cout << f(a + b); return 0; }
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> #include <string> using namespace std; int num[10]; bool vis[10][10]; //vis[第i个面][第i个面的点数]:判断是否出现过 int main() { for(int i = 0 ; i < 6 ; ++i) cin >> num[i]; int n; cin >> n; while(n--) { for(int i = 0 ; i < 6 ; ++i) { vis[i][num[i]] = true; //从大到小,保证每次点数最大 for(int j = 6 ; j >= 1 ; --j) if(!vis[i][j]) { num[i] = j; break; } } } for(int i = 0 ; i < 6 ; ++i) cout << num[i] << " \n"[i == 5]; return 0; }
#include <iostream> using namespace std; string f(string s) { string s0; for (int i = 1 ; i < s.size(); i++) if (s[i] % 2 == s[i-1] % 2) s0 += max(s[i], s[i-1]); return s0; } int main() { string s1 , s2; cin >> s1 >> s2; if(f(s1) == f(s2)) cout << f(s1); else cout << f(s1) << endl << f(s2) << endl; return 0; }
#include <bits/stdc++.h> //考试19分 using namespace std; const int N = 1e4 + 9999; bool vis[N][N]; int main() { int n , m , q , ans = 0; cin >> n >> m >> q; while(q--) { int t , c; cin >> t >> c; if(t == 1) { for(int i = 0 ; i < n ; ++i) vis[i][c - 1] = true; } else { for(int i = 0 ; i < m ; ++i) vis[c - 1][i] = true; } } for(int i = 0 ; i < n ; ++i) for(int j = 0 ; j < m ; ++j) { if(vis[i][j]) continue; ++ans; } cout << ans; return 0; }
#include <bits/stdc++.h> using namespace std; set<pair<int , int>>st; int main() { int n , m , q , ans = 0; cin >> n >> m >> q; while(q--) { int t , c; cin >> t >> c; if(t == 1) { for(int i = 1 ; i <= n ; ++i) { if(!st.count({i , c})) ++ans; st.insert({i , c}); } } else { for(int i = 1 ; i <= m ; ++i) { if(!st.count({c , i})) ++ans; st.insert({c , i}); } } } cout << n * m - ans; return 0; }
经常使用
)
#include <bits/stdc++.h> #define x first #define y second using namespace std; typedef pair<int , int> pii; multimap<int , int> m; bool v1[300][105]; int main() { int n , k , s; cin >> n >> k >> s; while(n--) { int t , p; scanf("%d %d" , &t , &p); if(t < 175) continue; m.insert(make_pair(t , p)); } int ans = 0 , ans1 = 0 , ans2 = 0; for(int l = 0 ; l < k ; ++l) { bool v2[300] = {false}; for(auto i = m.begin() ; i != m.end() ; ++i) { if(i->y >= s && !v1[i->x][i->y] && m.count(i->x) > 1 && l != 0) { ++ans; v1[i->x][i->y] = true; continue; } if(!v2[i->x] && !v1[i->x][i->y]) { ++ans; v2[i->x] = true; v1[i->x][i->y] = true; } } } cout << ans<<endl; return 0; }
不能直接存储结构体(pair)作为键值
),调试了很长时间~#include <iostream> #include <cstdio> #include <algorithm> #include <vector> #define x first #define y second using namespace std; typedef pair<int , int> pii; vector<pii> v; int main() { int n , k , s; cin >> n >> k >> s; while(n--) { int t , p; scanf("%d %d" , &t , &p); if(t < 175) continue; v.push_back({t , p}); } sort(v.begin() , v.end()); int ans = 0; while(k--) { bool vis[300] = {false}; for(int i = 0 ; i < v.size() ; ++i) { if(vis[v[i].x] && v[i].y < s) continue; vis[v[i].x] = true; ++ans; v.erase(v.begin() + i); i = 0; } } cout << ans; return 0; }
>175分
的面试者,即需要两重循环来操作v.erase(v.begin() + i)
i
是从0开始到第i
个,并且删除元素后容器里元素的下标改变所以每次删除都要将i置为0200ms,
所以TLE
#include <iostream> #include <cstdio> #include <unordered_map> #define x first #define y second using namespace std; unordered_map<int , int> m; int main() { int n , k , s , ans = 0; cin >> n >> k >> s; while(n--) { int t , p; scanf("%d %d" , &t , &p); if(t < 175) continue; if(p >= s) { ++ ans; continue; } ++m[t]; } for(auto i : m) ans += i.y >= k ? k : i.y; cout << ans; return 0; }
1.按照之前的思路两重循环TLE,所以得往一重循环的方向想
2. 题目的意思是(非常重要):
>=175
分都有机会被录取>=s(该企业的面试分数线)
, 直接被录取(天梯赛分数>=175
)>=s(该企业的面试分数线)
的面试者) , 即只能录取一个>=s(该企业的面试分数线)
除外)3.所以思路就很明确:
>=175
的面试者(++ans) 和 天梯赛分数 < 175
(边输入边操作)批次k >= 某个分数的面试者的个数
, 说明该分数的面试者全部被录取批次k < 某个分数的面试者的个数
, 说明该分数的面试者部分被录取,录取了k个ans += i.y >= k ? k : i.y;
, emmmm,有点贪心的思想#include <iostream> #include <set> #include <unordered_map> using namespace std; set<string>st; unordered_map<string , int> vis; void f(string s) { if(vis[s] == 2 || s == "00:00:00" || s == "23:59:59") st.erase(s); else st.insert(s); } int main() { //卡输入输出,如果不解除缓存,就TLE(21)分 ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n , k , j = 0; cin >> n; while(n-- ) { char ch; string s1 , s2; cin >> s1 >> ch >> s2; ++vis[s1] , ++vis[s2]; f(s1) , f(s2); } if(!(vis["00:00:00"])) st.insert("00:00:00"); if(!(vis["23:59:59"])) st.insert("23:59:59"); for(auto i : st) { ++j; cout << i; j & 1 ? cout << " - " : cout << endl; } return 0; }
00:00:00
和23:59:59)
s1
,字符'-'
, 和字符串s2
00:00:00
和23:59:59
, 这两个只要出现就删除00:00:00
和23:59:59
, 就添加TLE(21
)分,因为每个区间间隔至少 1 秒,max(n) = 86400 / 2//解除缓存的模板
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
WINDWOS下[1e5的数据量]:
使用解除绑定的cout : 30.719000 秒 , 29.518000 秒 , 29.446000 秒
不使用解除绑定cout : 51.749000 秒 , 49.383000 秒 , 47.605000 秒
C++文件的printf : 84.962000 秒 , 76.131000 秒 , 77.639000 秒
C语言文件的printf : 29.776000 秒 , 29.327000 秒 , 29.862000 秒
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。