結果
| 問題 |
No.8016 unordered_mapなるたけ落とすマン
|
| ユーザー |
hogeover30
|
| 提出日時 | 2016-05-22 01:34:16 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 43 ms / 1,000 ms |
| コード長 | 704 bytes |
| コンパイル時間 | 1,641 ms |
| コンパイル使用メモリ | 170,620 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-11 05:04:15 |
| 合計ジャッジ時間 | 6,155 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 48 |
ソースコード
#include<bits/stdc++.h>
//using namespace std;int main(){long n,a;map<long,int>r;for(cin>>n>>a;cin>>a;--n<0?cout<<r[a]<<' ',0:++r[a]);}
using namespace std;
const int bufsize=16*100010;
char buf[bufsize];
long a[100010];
int main()
{
fgets(buf, bufsize, stdin);
int n, m; sscanf(buf, "%d%d", &n, &m);
a[0]=atol(strtok(fgets(buf, bufsize, stdin), " "));
for(int i=1; i<n; ++i) a[i]=atol(strtok(0, " "));
sort(a, a+n);
long b=atol(strtok(fgets(buf, bufsize, stdin), " "));
printf("%d ", upper_bound(a, a+n, b)-lower_bound(a, a+n, b));
for(int i=1; i<m; ++i) {
b=atol(strtok(0, " "));
printf("%d ", upper_bound(a, a+n, b)-lower_bound(a, a+n, b));
}
}
hogeover30