回答編集履歴

1

追記

2021/07/14 16:05

投稿

asm
asm

スコア15149

test CHANGED
@@ -17,3 +17,43 @@
17
17
  正直ファイル分割ができない競プロでやりたくないですし
18
18
 
19
19
  勉強した結果[uthash](https://troydhanson.github.io/uthash/)などのヘッダライブラリを使う事になる気もします
20
+
21
+
22
+
23
+ ---
24
+
25
+
26
+
27
+ よく考えるとソートの際に面倒くさいので構造体の方が楽でしたが
28
+
29
+ 入力は以下のような感じ
30
+
31
+
32
+
33
+ ```c
34
+
35
+ struct {
36
+
37
+ char ch;
38
+
39
+ int count;
40
+
41
+ } data[255] = {};
42
+
43
+
44
+
45
+ for(int i = 0; i < n; i++){
46
+
47
+ char ch;
48
+
49
+ int d;
50
+
51
+ scanf("%c %d", &ch, &d);
52
+
53
+ data[ch].ch = ch;
54
+
55
+ data[ch].count += d;
56
+
57
+ }
58
+
59
+ ```