【代码实现】 packagetest_201412;importjava.util.HashMap;importjava.util.Map;importjava.util.Scanner;/** 试题编号: 201412-1试题名称: 门禁系统时间限制: 1.0s内存限制: 256.0MB问题描述:问题描述涛涛最近要负责图书馆的管理工作,需要记录下每天读者的到访情况。每位读者有一个编号,每条记录用读者的编号来表示。
CCF 201412-1 门禁系统(C++) 多开个数组存次数,没啥好说的 #include<iostream>#include<bits/stdc++.h>#include<cstdio>usingnamespacestd;intn;intnum[1005];intant[1005];intmain(){ cin >> n;for(inti =0; i < n; i++) {intx;scanf("%d", &x); num[x]++; ant[i]=num[x]; }for(...
试题编号: 201412-1 试题名称: 门禁系统 时间限制: 1.0s 内存限制: 256.0MB 问题描述 涛涛最近要负责图书馆的管理工作,需要记录下每天读者的到访情况。每位读者有一个编号,每条记录用读者的编号来表示。给出读者的来访记录,请问每一条记录中的读者是第几次出现。 输入格式 输入的第一行包含一个整数n,表示涛涛的...
CSP题解|201412-1 门禁系统|100分 #include <bits/stdc++.h> using namespace std; int main() { int n;cin>>n; map<int,int>mp; while(n--){ int temp;cin>>temp; if(mp.find(temp) == mp.end()){ cout<<1<<" "; mp[temp]=1; }else cout<<++mp[temp]<<" "; } } 全部...
CCF CSP 201412-1 门禁系统 问题描述 开了三个数组,第一个数组a记录读者编号,第二个数组b计算相同读者编号的次数,第三个数组c依次对应每条记录中读者编号是第几次出现 1#include <iostream>2#include <algorithm>3#include <cmath>4#include <string>5#include <cstring>6usingnamespacestd;7intn;8inta[1005...
/* CCF201412-1 门禁系统 */#include<stdio.h>#include<string.h>#defineN1000intnocunt[N+1];intmain(void){intn,v;// 变量初始化memset(nocunt,0,sizeof(nocunt));// 输入数据,计数统计,输出结果scanf("%d",&n);for(inti=1;i<=n;i++){// 输入数据scanf("%d",&v);nocunt[v]++;// ...
【CCF201412-1】门禁系统 问题描述 涛涛最近要负责图书馆的管理工作,需要记录下每天读者的到访情况。每位读者有一个编号,每条记录用读者的编号来表示。给出读者的来访记录,请问每一条记录中的读者是第几次出现。 输入格式 输入的第一行包含一个整数n,表示涛涛的记录条数。
1≤n≤1,000,读者的编号为不超过n的正整数。 l源代码 1# include <stdio.h>2# include <stdlib.h>3# include <memory.h>45structMyData {6intkey;7intvalue;8};910intmain(void)11{12intn;//个数13intflag =1;14intcount =0;15scanf("%d", &n);1617int*input = (int*)malloc(sizeof(int...
CCF——门禁系统201412-1 问题描述 涛涛最近要负责图书馆的管理工作,需要记录下每天读者的到访情况。每位读者有一个编号,每条记录用读者的编号来表示。给出读者的来访记录,请问每一条记录中的读者是第几次出现。 输入格式 输入的第一行包含一个整数n,表示涛涛的记录条数。 第二行包含n个整数,依次表示涛涛的记录...
CCF-CSP-201412-1门禁系统 链接:http://118.190.20.162/view.page?gpid=T21 代码: #include<bits/stdc++.h>using namespacestd;typedeflonglongintl;unordered_map<intl,intl>mp;intmain(){ios::sync_with_stdio(false);intl n,num;cin>>n;for(inti=0;i<n;i++){cin>>num;cout<<++mp[num]<<" "...