Virtual contest is a way to take part in past contest, as close as possible to participation on time. It is supported only ACM-ICPC mode for virtual contests. If you've seen these problems, a virtual contest is not for you - solve these problems in the archive. If you just want to solve some problem from a contest, a virtual contest is not for you - solve this problem in the archive. Never use someone else's code, read the tutorials or communicate with other person during a virtual contest.
You are registered for practice. You can solve problems unofficially. Results can be found in the contest status and in the bottom of standings.
Submission | Time | Verdict |
---|---|---|
19216536 | Jul/18/2016 19:30 | Accepted |
19216501 | Jul/18/2016 19:28 | Wrong answer on test 14 |
19216394 | Jul/18/2016 19:21 | Wrong answer on test 11 |
19216232 | Jul/18/2016 19:11 | Wrong answer on test 1 |
19215545 | Jul/18/2016 18:25 | Wrong answer on test 3 |
No tag edit access
F. Couple Cover
time limit per test
3 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output
Couple Cover, a wildly popular luck-based game, is about to begin! Two players must work together to construct a rectangle. A bag withn balls, each with an integer written on it, is placed on the table. The first player reaches in and grabs a ball randomly (all balls have equal probability of being chosen) — the number written on this ball is the rectangle's width in meters. This ball is not returned to the bag, and the second player reaches into the bag and grabs another ball — the number written on this ball is the rectangle's height in meters. If the area of the rectangle is greater than or equal some threshold p square meters, the players win. Otherwise, they lose.
The organizers of the game are trying to select an appropriate value for p so that the probability of a couple winning is not too high and not too low, but they are slow at counting, so they have hired you to answer some questions for them. You are given a list of the numbers written on the balls, the organizers would like to know how many winning pairs of balls exist for different values of p. Note that two pairs are different if either the first or the second ball is different between the two in pair, and two different balls with the same number are considered different.
Input
The input begins with a single positive integer n in its own line (1 ≤ n ≤ 106).
The second line contains n positive integers — the i-th number in this line is equal to ai (1 ≤ ai ≤ 3·106), the number written on the i-th ball.
The next line contains an integer m (1 ≤ m ≤ 106), the number of questions you are being asked.
Then, the following line contains m positive integers — the j-th number in this line is equal to the value of p (1 ≤ p ≤ 3·106) in the j-th question you are being asked.
Output
For each question, print the number of winning pairs of balls that exist for the given value of p in the separate line.
Examples
input
5 4 2 6 1 3 4 1 3 5 8
output
20 18 14 10
input
2 5 6 2 30 31
output
2
/* my general mistakes that costed me a lot
* check for overflows
* check and mod and use int type variables where possible to avoid tles
* while multiplying two variables whose value can exceed integer
limt make sure to typecase them
* use scanf when you are not working with the best possible optimisation
* return a value from a function that has a return type sometimes the
compiler may give the correct answer but there will be problem in the judge
* be very cautious about uninitiaalised variables , infact never keep them
or handle them properly
*never use inbuilt log function or pow function it fucking ruins everything
*/
#include<bits/stdc++.h>
using namespace std;
#define ff first
#define ss second
#define mp make_pair
#define pb push_back
#define ll long long int
#define pp pair<int,int>
#define ve vector
#define mod 1000000007
int dx[]={-1,-1,+0,+1,1,+1,+0,-1}; // anticlockwise starting from up!
int dy[]={+0,-1,-1,-1,0,+1,+1,+1};
/************************************CODE BEGINS HERE************************/
int cnt[3000010];
ll possible[3000010];
vector<int> v;
void pre()
{
for(int i=1;i<=3000000;i++)
{
if(cnt[i]!=0)
{
for(int j=1;j*i<=3000001;j++)
{
if(i!=j)
possible[j*i]+=(1ll*cnt[j]*cnt[i]);
else
possible[j*i]+=(1ll*(cnt[i]*(cnt[i]-1)));
}
}
}
}
int main()
{
ll n;
cin>>n;
for(int i=0;i<n;i++)
{
int aa;
scanf("%d",&aa);
if(cnt[aa]==0)
v.pb(aa);
cnt[aa]++;
}
sort(v.begin(),v.end());
pre();
int sz=v.size();
for(int i=0;i<=3000001;i++)
{
possible[i]+=possible[i-1];
}
int q;
cin>>q;
while(q--)
{
int x;
scanf("%d",&x);
ll ans=1ll*(n*(n-1))-possible[x-1];
cout<<ans<<"\n";
}
return 0;
}