摘要: 简单模拟... #include<bits/stdc++.h> #include<vector> using namespace std; int main() { int n; cin>>n; vector<int> trees(n,0); vector<bool> drop(n,false); 阅读全文
posted @ 2021-04-01 20:03 南理工学渣 阅读(40) 评论(0) 推荐(0)
摘要: 简单的模拟 #include<bits/stdc++.h> using namespace std; int main() { int n,m; cin>>n>>m; int sum=0,max_loss=0,max_index; for(int i=0;i<n;i++){ int temp_sum 阅读全文
posted @ 2021-04-01 19:24 南理工学渣 阅读(59) 评论(0) 推荐(0)