码迷,mamicode.com
首页 > 其他好文 > 详细

PAT1039

时间:2014-11-14 21:11:56      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   os   sp   for   div   

卡两样东西,一个是string的map,另一个是cin,cout

谢谢PAT让我感受到了OI的风采

 1 #include <iostream>
 2 #include <vector>
 3 #include <string>
 4 #include <fstream>
 5 #include <map>
 6 #include <algorithm>
 7 
 8 using namespace std;
 9 
10 //#define OJ
11 
12 #ifdef OJ
13 #define fin cin
14 #endif
15 
16 int hash_str(const char *str){
17     return (str[0] - A) * 26 * 26 * 10 + (str[1] - A) * 26 * 10 + (str[2] - A) * 10 + (str[3] - 0);
18 }
19 
20 vector<int> student_course[26 * 26 * 26 * 10];
21 
22 int main(){
23 #ifndef OJ
24     ifstream fin("in.data");
25 #endif
26 
27     ios::sync_with_stdio(NULL);
28 
29     int N, K;
30     fin >> N >> K;
31 
32     char name[5];
33 
34     for (int i = 0; i < K; i++){
35         int idx, num;
36         fin >> idx >> num;
37 
38         for (int j = 0; j < num; j++){
39             fin >> name;
40             student_course[hash_str(name)].push_back(idx);
41         }
42     }
43 
44     for (int i = 0; i < N; i++){
45         fin >> name;
46 
47         vector<int> &course_idx = student_course[hash_str(name)];
48         sort(course_idx.begin(), course_idx.end());
49 
50         printf("%s %d", name, course_idx.size());
51         for (int j = 0; j < course_idx.size(); j++){
52             printf(" %d", course_idx[j]);
53         }
54 
55         printf("\n");
56     }
57 
58     return 0;
59 }

 

PAT1039

标签:style   blog   io   color   ar   os   sp   for   div   

原文地址:http://www.cnblogs.com/EpisodeXI/p/4098119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!