답안 #890890

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
890890 2023-12-22T04:56:01 Z Muhammad_Aneeq Pairs (IOI07_pairs) C++17
30 / 100
130 ms 28444 KB
/*
بسم الله الرحمن الرحيم
Author:
                          (:Muhammad Aneeq:)
*/
#include <iostream>
#include <map>
#include <set>
#include <vector>
#include <algorithm>
using namespace std;
#define int long long
int dis(vector<int>&a,vector<int>&b)
{
  int z=0;
  for (int j=0;j<b.size();j++)
    z+=abs(a[j]-b[j]);
  return z;
}
inline void solve()
{
  long long B,N,D,M;
  cin>>B>>N>>D>>M;
  int a[N][B];
  vector<int>mi(B,1e9+10),ma(B,0);
  map<vector<int>,int>d;
  for (int i=0;i<N;i++)
  {
    for (int j=0;j<B;j++)
      cin>>a[i][j];
    for (int j=0;j<B;j++)
    {
      mi[j]=min(mi[j],a[i][j]);
      ma[j]=max(ma[j],a[i][j]);
    }
  }
  if (dis(mi,ma)<=D)
  {
    cout<<(N*(N-1))/2<<endl;
    return;
  }
  if (B==1)
  {
    vector<int>z;
    for (int i=0;i<N;i++)
      z.push_back(a[i][0]);
    sort(begin(z),end(z));
    int ans=0;
    for (int i=0;i<N;i++)
    {
      int x=upper_bound(begin(z),end(z),z[i]+D)-begin(z);
      ans+=x-i-1;
    }
    cout<<ans<<endl;return;
  }
  int g=1;
  for (int i=0;i<B;i++)
    g*=M;
  int ans=0;
  set<vector<int>>s;
  for (int i=0;i<N;i++)
  {
    vector<int>g;
    for (int j=0;j<B;j++)
      g.push_back(a[i][j]);
    d[g]++;
    s.insert(g);
  }
  vector<vector<int>>z={begin(s),end(s)};
  int y=z.size();
  if (y*(y-1)/2>D*y)
    exit(-1);
  for (int i=0;i<z.size();i++)
  {
    int g=d[z[i]];
    ans+=(g*(g-1))/2;
    for (int j=i+1;j<z.size();j++)
    {
      int di=dis(z[i],z[j]);
      if (di<=D)
        ans+=d[z[i]]*d[z[j]];
    }
  }
  cout<<ans<<endl;
}
signed main()
{
  ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
        solve();
}

Compilation message

pairs.cpp: In function 'long long int dis(std::vector<long long int>&, std::vector<long long int>&)':
pairs.cpp:16:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   16 |   for (int j=0;j<b.size();j++)
      |                ~^~~~~~~~~
pairs.cpp: In function 'void solve()':
pairs.cpp:73:17: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   73 |   for (int i=0;i<z.size();i++)
      |                ~^~~~~~~~~
pairs.cpp:77:21: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   77 |     for (int j=i+1;j<z.size();j++)
      |                    ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Output is correct
2 Correct 0 ms 344 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 348 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 12 ms 2268 KB Output is correct
2 Correct 12 ms 2268 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 19 ms 2268 KB Output is correct
2 Correct 16 ms 2384 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 19 ms 2268 KB Output is correct
2 Correct 17 ms 2268 KB Output is correct
3 Correct 16 ms 2388 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 46 ms 4540 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 127 ms 27696 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 115 ms 27624 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 604 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 38 ms 2796 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 112 ms 23396 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 130 ms 28444 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -