結果
| 問題 |
No.8016 unordered_mapなるたけ落とすマン
|
| ユーザー |
hogeover30
|
| 提出日時 | 2016-05-22 03:00:15 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 1,000 ms |
| コード長 | 870 bytes |
| コンパイル時間 | 1,919 ms |
| コンパイル使用メモリ | 169,256 KB |
| 実行使用メモリ | 8,448 KB |
| 最終ジャッジ日時 | 2024-10-11 05:07:03 |
| 合計ジャッジ時間 | 5,468 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 48 |
ソースコード
#include<bits/stdc++.h>
#include <unistd.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=32*100010;
char buf[bufsize];
const char* delimiter=" \n";
long a[100010], c[100010], r[100010];
int main()
{
read(0, buf, bufsize);
int n=atoi(strtok(buf, delimiter));
int m=atoi(strtok(0, delimiter));
for(int i=0; i<n; ++i) a[i]=atol(strtok(0, delimiter));
sort(a, a+n);
int k=0;
c[k]=1;
r[0]=0;
for(int i=1; i<n; ++i) {
if (a[i]==a[i-1])
++c[k];
else {
++c[++k];
r[i]=k;
}
}
//n=unique(a, a+n)-a;
for(int i=0; i<m; ++i) {
long b=atol(strtok(0, delimiter));
int p=lower_bound(a, a+n, b)-a;
printf("%d ", a[p]==b ? c[r[p]] : 0);
}
}
hogeover30