# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
442199 | Yazan_Alattar | Aliens (IOI16_aliens) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <fstream>
#include <vector>
#include <cstring>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <utility>
#include <cmath>
#include <numeric>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define pb push_back
#define endl "\n"
const int M = 1005;
const int mod = 1e9+7;
bool a[M][M], vist[M][M];
int ans;
long long take_photos(int n, int m, int k, int[] r, int[] c)
{
for(int i = 0; i < n; ++i){
if(vist[r[i]][c[i]]) continue;
vist[r[i]][c[i]] = 1;
++ans;
}
return ans;
}
/*
int main()
{
//ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
vector <int> r, c;
int n, m, k;
cin >> n >> m >> k;
for(int i = 0; i < n; ++i){
int x;
cin >> x;
r.pb(x);
}
for(int i = 0; i < n; ++i){
int x;
cin >> x;
c.pb(x);
}
cout << take_photos(n, m, k, r, c);
return 0;
}
*/