This commit is contained in:
Andrew 2019-11-19 00:19:04 +07:00
parent 4744ebb565
commit deba2fdcf0
5 changed files with 160 additions and 8 deletions

View file

@ -4,6 +4,7 @@
#include <fstream>
#include <vector>
#include <cmath>
#include <limits>
using namespace std;
@ -30,9 +31,9 @@ int main() {
return 1;
}
vector<float> v = read_vec(inf);
size_t index = -1;
float smallest = 1e38f;
for (size_t i = 0; i < v.size(); i++) {
size_t index = 0;
float smallest = v[index];
for (size_t i = 1; i < v.size(); i++) {
if (nearest_int_dist(v[i]) < smallest) {
smallest = nearest_int_dist(v[i]);
index = i;

View file

@ -3,15 +3,20 @@
#include <iostream>
#include <fstream>
#include <string>
#define MAX_STRING 5000
using namespace std;
string get_short_name(const string &full_name) {
char s[MAX_STRING], n[MAX_STRING], f[MAX_STRING], out[MAX_STRING];
sscanf(full_name.c_str(), "%s %s %s", s, n, f);
sprintf(out, "%s %c.%c.", s, n[0], f[0]);
return string(out);
string out[3];
int i = 0;
for (char c : full_name) {
if (c == ' ') {
i++;
continue;
}
out[i] += c;
}
return out[0] + " " + out[1][0] + "." + out[2][0] + ".";
}
void read_string(istream &reader, string &where, char delimiter) {
@ -31,6 +36,7 @@ int main() {
while (!inf.eof()) {
string s;
read_string(inf, s, '\n');
if (s.size() < 2) continue;
cout << get_short_name(s) << endl;
}
return 0;