# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
375301 | 2021-03-09T07:09:14 Z | astoria | 자매 도시 (APIO20_swap) | C++14 | 0 ms | 0 KB |
#include "bits/stdc++.h" #include "swap.h" #include <vector> int mx; bool isM; void init(int N, int M, std::vector<int> U, std::vector<int> V, std::vector<int> W) { mx=0; for(int i : W){ mx=max(mx,i); } isM=0; if(N==M) isM=1; } int getMinimumFuelCapacity(int X, int Y) { if(isM) return mx; else return -1; }