Skip to main content
  1. Posts/

hdu 5233 Gunner II (bc #42 B) (离散化)

·2 mins
Note: This article is available in Chinese only. 本文暂无英文版本。 View original

Gunner II
#

**Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 1433    Accepted Submission(s): 540 **

Problem Description

Long long ago, there was a gunner whose name is Jack. He likes to go hunting very much. One day he go to the grove. There are n birds and n trees. The i-th bird stands on the top of the i-th tree. The trees stand in straight line from left to the right. Every tree has its height. Jack stands on the left side of the left most tree. When Jack shots a bullet in height H to the right, the nearest bird which stands in the tree with height H will falls.

Jack will shot many times, he wants to know which bird will fall during each shot.

Input

There are multiple test cases (about 5), every case gives n, m in the first line, n indicates there are n trees and n birds, m means Jack will shot m times.

In the second line, there are n numbers h[1],h[2],h[3],…,h[n] which describes the height of the trees.

In the third line, there are m numbers q[1],q[2],q[3],…,q[m] which describes the height of the Jack’s shots.

Please process to the end of file.

[Technical Specification]

All input items are integers.

1<=n,m<=100000(10^5)

1<=h[i],q[i]<=1000000000(10^9)

Output

For each q[i], output an integer in a single line indicates the id of bird Jack shots down. If Jack can’t shot any bird, just output -1.

The id starts from 1.

Sample Input

5 5 1 2 3 4 1 1 3 1 4 2

Sample Output

1 3 5 4 2

Hint

Huge input, fast IO is recommended.

Source

BestCoder Round #42

因为一共才1E5的数据,而高度有1E9

所以考虑离散化

关于离散化的内容,这篇博客讲得很好。

http://blog.csdn.net/axuan_k/article/details/45954561

我是使用了第三种map+set的方法。。。

离散化大概是因为数据太大下表存不下。。。

然后map的key 值没有范围?所以实现了离散化(是这样嘛???)

 1/*************************************************************************
 2	> File Name: code/bc/#42/B.cpp
 3	> Author: 111qqz
 4	> Email: rkz2013@126.com
 5	> Created Time: 2015年08月01日 星期六 02时47分54秒
 6 ************************************************************************/
 7
 8#include<iostream>
 9#include<iomanip>
10#include<cstdio>
11#include<algorithm>
12#include<cmath>
13#include<cstring>
14#include<string>
15#include<map>
16#include<set>
17#include<queue>
18#include<vector>
19#include<stack>
20#define y0 abc111qqz
21#define y1 hust111qqz
22#define yn hez111qqz
23#define j1 cute111qqz
24#define tm crazy111qqz
25#define lr dying111qqz
26using namespace std;
27#define REP(i, n) for (int i=0;i<int(n);++i)
28typedef long long LL;
29typedef unsigned long long ULL;
30const int inf = 0x7fffffff;
31const int N=2E5+7;
32int n,m;
33map<int,int>mp;
34set<int>se[N];
35int main()
36{
37    while (scanf("%d %d",&n,&m)!=EOF)
38    {
39	for ( int i = 1 ; i <= n ; i++ )
40	    se[i].clear();
41	mp.clear();
42	int  t = 0;
43	int x;
44	for ( int i = 1 ; i <= n ; i++ )
45	{
46	    scanf("%d",&x);
47	    if (!mp[x]) mp[x]=++t;
48	    se[mp[x]].insert(i);
49	}
50	for ( int i = 1 ; i <= m ; i++)
51	{
52	    scanf("%d",&x);
53	    if (se[mp[x]].size()==0)
54	    {
55		puts("-1");
56	    }
57	    else
58	    {
59		printf("%d\n",*se[mp[x]].begin());
60		se[mp[x]].erase(se[mp[x]].begin());
61	    }
62	}
63
64    }
65	return 0;
66}

还有一种写法,貌似要快一点,但是空间用的多一些:

 1/*************************************************************************
 2	> File Name: code/bc/#42/BB.cpp
 3	> Author: 111qqz
 4	> Email: rkz2013@126.com
 5	> Created Time: 2015年08月01日 星期六 09时30分45秒
 6 ************************************************************************/
 7
 8#include<iostream>
 9#include<iomanip>
10#include<cstdio>
11#include<algorithm>
12#include<cmath>
13#include<cstring>
14#include<string>
15#include<map>
16#include<set>
17#include<queue>
18#include<vector>
19#include<stack>
20#define y0 abc111qqz
21#define y1 hust111qqz
22#define yn hez111qqz
23#define j1 cute111qqz
24#define tm crazy111qqz
25#define lr dying111qqz
26using namespace std;
27#define REP(i, n) for (int i=0;i<int(n);++i)
28typedef long long LL;
29typedef unsigned long long ULL;
30const int inf = 0x7fffffff;
31map<int,set<int> >mp;
32int m,n;
33int main()
34{
35    while (scanf("%d %d",&n,&m)!=EOF)
36    {
37	mp.clear();
38	for ( int i = 1;  i <= n ; i++ )
39	{
40	    int tmpx;
41	    scanf("%d",&tmpx);
42	    mp[tmpx].insert(i);
43	}
44	for ( int i = 1 ; i <= m ; i++ )
45	{
46	    int q;
47	    scanf("%d",&q);
48	    if (mp[q].size()==0)
49	    {
50		puts("-1");
51	    }
52	    else
53	    {
54		printf("%d\n",*mp[q].begin());
55		mp[q].erase(mp[q].begin());
56	    }
57	}
58    }
59
60	return 0;
61}

Related

SGU 456 Annuity Payment Scheme

·1 min
水题,推个公式出来,注意精度…一遍A 1 2 /************************************************************************* 3 > File Name: code/2015summer/#5/D.cpp 4 > Author: 111qqz 5 > Email: rkz2013@126.com 6 > Created Time: 2015年07月30日 星期四 13时17分26秒 7 ************************************************************************/ 8 9 #include<iostream> 10 #include<iomanip> 11 #include<cstdio> 12 #include<algorithm> 13 #include<cmath> 14 #include<cstring> 15 #include<string> 16 #include<map> 17 #include<set> 18 #include<queue> 19 #include<vector> 20 #include<stack> 21 #define y0 abc111qqz 22 #define y1 hust111qqz 23 #define yn hez111qqz 24 #define j1 cute111qqz 25 #define tm crazy111qqz 26 #define lr dying111qqz 27 using namespace std; 28 #define REP(i, n) for (int i=0;i<int(n);++i) 29 typedef long long LL; 30 typedef unsigned long long ULL; 31 const int inf = 0x7fffffff; 32 int s,m,p; 33 double ans; 34 35 double cal(double x,int n) 36 { 37 double res = 1.0; 38 for ( int i = 1 ; i <= n ; i++ ) 39 { 40 res = res * x; 41 } 42 // cout<<"res:"<<res<<endl; 43 return res; 44 } 45 int main() 46 { 47 cin>>s>>m>>p; 48 double sum = 0; 49 double per = p*1.0/100+1; 50 for ( int i = 1 ; i <= m; i++ ) 51 { 52 sum=sum+1.0/cal(per,i); 53 // cout<<"sum:"<<sum<<endl; 54 } 55 // cout<<sum<<endl; 56 cout<<fixed<<setprecision(5)<<s*1.0/sum<<endl; 57 58 return 0; 59 }

SPOJ AMR10F Cookies Piles

·1 min
AMR10F - Cookies Piles # 水. 1 2 3 /************************************************************************* 4 > File Name: code/2015summer/#4/F.cpp 5 > Author: 111qqz 6 > Email: rkz2013@126.com 7 > Created Time: 2015年07月29日 星期三 21时47分23秒 8 ************************************************************************/ 9 10 #include<iostream> 11 #include<iomanip> 12 #include<cstdio> 13 #include<algorithm> 14 #include<cmath> 15 #include<cstring> 16 #include<string> 17 #include<map> 18 #include<set> 19 #include<queue> 20 #include<vector> 21 #include<stack> 22 #define y0 abc111qqz 23 #define y1 hust111qqz 24 #define yn hez111qqz 25 #define j1 cute111qqz 26 #define tm crazy111qqz 27 #define lr dying111qqz 28 using namespace std; 29 #define REP(i, n) for (int i=0;i<int(n);++i) 30 typedef long long LL; 31 typedef unsigned long long ULL; 32 const int inf = 0x7fffffff; 33 int main() 34 { 35 int T; 36 int n,a,d; 37 cin>>T; 38 while (T--) 39 { 40 scanf("%d %d %d",&n,&a,&d); 41 cout<<n*a+n*(n-1)/2*d<<endl; 42 } 43 44 return 0; 45 }