摘要: //1#include<stdio.h>int main(){ int n; scanf("%d",&n); int jia,jia1,yi,yi1; int cnt1=0,cnt2=0,sum; while(n--){ scanf("%d %d %d %d",&jia,&jia1,&yi,&yi1 阅读全文
posted @ 2019-02-21 21:45 捕鱼儿海 阅读(136) 评论(0) 推荐(0) 编辑
摘要: //1#includeusing namespace std;struct node{ string s; int a,b;};int main(){ int n; scanf("%d",&n); vectorv(n); for(int i=0;i>v[i].s>>v[i].a>>v[i].b; } int m,t; scan... 阅读全文
posted @ 2019-02-21 16:02 捕鱼儿海 阅读(153) 评论(0) 推荐(0) 编辑
摘要: //1#include<bits/stdc++.h>using namespace std;int main(){ int n,m; char c; scanf("%d %c",&n,&c); if(n%2==0) m=n/2; if(n%2==1) m=(n+1)/2; for(int i=0;i 阅读全文
posted @ 2019-02-21 09:49 捕鱼儿海 阅读(132) 评论(0) 推荐(0) 编辑