竞赛
考级
#include <iostream> #include <vector> #include <algorithm> #include <climits> using namespace std; struct Missile { int d1_sq; int d2_sq; }; int main() { int x1, y1, x2, y2; cin >> x1 >> y1 >> x2 >> y2; }
澜