Submission #3815191


Source Code Expand

#include <bits/stdc++.h>
#define ALL(x) (x).begin(), (x).end()
using namespace std;
typedef long long int ll;

int main() {
  int n;
  cin >> n;
  vector<int> A(n), B(n), C(n);
  for (int i = 0; i < n; i++) cin >> A[i];
  for (int i = 0; i < n; i++) cin >> B[i];
  for (int i = 0; i < n; i++) cin >> C[i];
  sort(A.begin(), A.end());
  sort(C.begin(), C.end());

  ll ans = 0;
  for (int i = 0; i < B.size(); i++)
    ans += (lower_bound(ALL(A), B[i]) - A.begin()) *
           (C.end() - upper_bound(ALL(C), B[i]));

  cout << ans << endl;
}

Submission Info

Submission Time
Task C - Snuke Festival
User kemingsurface
Language C++14 (GCC 5.4.1)
Score 300
Code Size 565 Byte
Status AC
Exec Time 157 ms
Memory 1408 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 32
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, s1.txt, s2.txt, s3.txt
Case Name Status Exec Time Memory
01.txt AC 154 ms 1408 KB
02.txt AC 157 ms 1408 KB
03.txt AC 129 ms 1408 KB
04.txt AC 128 ms 1408 KB
05.txt AC 96 ms 1408 KB
06.txt AC 96 ms 1408 KB
07.txt AC 76 ms 1408 KB
08.txt AC 76 ms 1408 KB
09.txt AC 59 ms 1408 KB
10.txt AC 59 ms 1408 KB
11.txt AC 56 ms 1408 KB
12.txt AC 56 ms 1408 KB
13.txt AC 135 ms 1408 KB
14.txt AC 137 ms 1408 KB
15.txt AC 134 ms 1408 KB
16.txt AC 135 ms 1408 KB
17.txt AC 136 ms 1408 KB
18.txt AC 140 ms 1408 KB
19.txt AC 154 ms 1408 KB
20.txt AC 54 ms 1408 KB
21.txt AC 56 ms 1408 KB
22.txt AC 136 ms 1408 KB
23.txt AC 135 ms 1408 KB
24.txt AC 141 ms 1408 KB
25.txt AC 142 ms 1408 KB
26.txt AC 1 ms 256 KB
27.txt AC 1 ms 256 KB
28.txt AC 1 ms 256 KB
29.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB
s3.txt AC 1 ms 256 KB