0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 01:25:24 +00:00
OI-codes/AcWing/800/800.cpp

28 lines
491 B
C++

#include <iostream>
using std::cin;
using std::cout;
#define endl '\n'
const int N = 100005;
int n, m, x, a[N], b[N];
int main() {
cin >> n >> m >> x;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < m; i++) {
cin >> b[i];
}
for (int i = 0, j = m - 1; i < n; i++) {
while (a[i] + b[j] > x) j--;
if (a[i] + b[j] == x) {
cout << i << ' ' << j << endl;
exit(0);
}
}
return 0;
}