CSES - NOI 2024 - Results
Submission details
Task:Anime Shops
Sender:Sigurdur Haukur Birgisson
Submission time:2024-03-06 19:23:22 +0200
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.07 s1, 3details
#20.08 s1, 3details
#30.07 s1, 3details
#4ACCEPTED0.07 s1, 3details
#5--3details
#6--3details
#7--3details
#8--3details
#9--2, 3details
#10--2, 3details
#11--2, 3details
#12--3details
#13--3details
#14--3details
#15--3details
#16--3details

Compiler report

input/code.cpp: In function 'bool next_town_has_shop(City, std::vector<City>)':
input/code.cpp:18:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   18 |   for (int j = 0; j < current_city.neighboring_cities.size(); j++) {
      |                   ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
input/code.cpp: In function 'int search_shop(City, std::vector<City>, int)':
input/code.cpp:38:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |     for (int i = 0; i < current_city.neighboring_cities.size(); i++) {
      |                     ~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
input/code.cpp: In function 'int main()':
input/code.cpp:91:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<City>::size_type' {aka 'long unsigned int'} [-...

Code


#include <iostream>
#include <vector>

using namespace std;

class City {
public:
  int id;
  bool has_shop;
  vector<int> neighboring_cities;
  bool next_town_has_shop;
};

bool next_town_has_shop(City current_city, vector<City> all_cities) {
  bool neigboring_city_has_shop = false;
  for (int j = 0; j < current_city.neighboring_cities.size(); j++) {
    int neighbour_id = current_city.neighboring_cities[j];

    if (all_cities[neighbour_id].has_shop) {
      neigboring_city_has_shop = true;
      break;
    }
  }

  return neigboring_city_has_shop;
}

int search_shop(City current_city, vector<City> all_cities, int distance = 0) {
  distance++;
  bool has_shop = next_town_has_shop(current_city, all_cities);

  if (has_shop) {
    return distance;
  } else {
    distance = -1;
    for (int i = 0; i < current_city.neighboring_cities.size(); i++) {
      City next_city = all_cities[current_city.neighboring_cities[i]];

      if (next_town_has_shop(next_city, all_cities)) {
        distance = 2;
        break;
      }
    }
  }
  return distance;
}

int main() {
  int n, m, k;
  cin >> n >> m >> k;

  vector<City> cities;

  // populate cities
  for (int i = 0; i < n; i++) {
    int id = i + 1;
    City city;
    city.id = id;
    city.has_shop = false; // default to false
    city.next_town_has_shop = false;
    cities.push_back(city);
  }

  // mark the cities which have a shop
  for (int i = 0; i < k; i++) {
    int id;
    cin >> id;

    cities[id].has_shop = true;
  }

  // connect cities with roads
  for (int i = 0; i < m; i++) {
    int city_a, city_b;
    cin >> city_a >> city_b;

    // remember id of city is index +1 of cities
    City from_city = cities[city_a - 1];
    from_city.neighboring_cities.push_back(city_b);
    cities[city_a - 1] = from_city;

    // make road bidirectional
    City to_city = cities[city_b - 1];
    to_city.neighboring_cities.push_back(city_a);
    cities[city_b - 1] = to_city;
  }

  // first search
  for (int i = 0; i < cities.size(); i++) {
    City city = cities[i];

    if (next_town_has_shop(city, cities)) {
      city.next_town_has_shop = true;
      cities[i] = city;
    }
  }

  for (int i = 0; i < cities.size(); i++) {
    City city = cities[i];

    // if the neighboiring cities have no shops, but the
    int distance = 1;
    if (!city.next_town_has_shop) {
      distance = -1;
      for (int j = 0; j < city.neighboring_cities.size(); j++) {
        int neighbour_id = city.neighboring_cities[j];
        City neighbour = cities[neighbour_id];

        if (neighbour.next_town_has_shop) {
          distance = 2;
        }
      }
    }

    cout << distance << " ";

    // cout << city.next_town_has_shop << " ";
    // cout << city.has_shop << " ";
    // cout << "id: " << city.id << endl;
    // cout << "has_shop: " << city.has_shop << endl;
    // cout << "next_town_has_shop: " << city.next_town_has_shop << endl;
    // cout << "amount of neighbours: " << city.neighboring_cities.size() <<
    // endl; cout << "distance: " << distance << endl; cout << endl;
  }
  cout << endl;

  return 0;
}

Test details

Test 1

Group: 1, 3

Verdict:

input
1000 2000 1
816
1 868
976 995
377 536
...

correct output
4 3 3 4 6 4 -1 4 5 2 2 5 5 3 5...

user output
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...
Truncated

Test 2

Group: 1, 3

Verdict:

input
1000 2000 20
578 955 222 813 494 962 753 71...

correct output
5 6 4 3 4 2 -1 3 3 3 4 3 2 3 -...

user output
-1 -1 -1 -1 2 -1 -1 -1 -1 -1 2...
Truncated

Test 3

Group: 1, 3

Verdict:

input
1000 2000 100
945 230 119 680 975 520 490 28...

correct output
2 2 3 -1 2 -1 3 2 2 1 2 -1 3 2...

user output
-1 -1 -1 2 2 -1 -1 2 2 1 -1 -1...
Truncated

Test 4

Group: 1, 3

Verdict: ACCEPTED

input
1000 2000 1000
150 443 960 545 218 487 896 38...

correct output
1 -1 1 1 -1 1 1 1 -1 1 1 1 -1 ...

user output
1 -1 1 1 -1 1 1 1 -1 1 1 1 -1 ...
Truncated

Test 5

Group: 3

Verdict:

input
100000 200000 1
77222
59470 61811
43092 48939
14395 19964
...

correct output
8 10 8 8 8 8 8 8 9 7 7 8 8 8 6...

user output
(empty)

Test 6

Group: 3

Verdict:

input
100000 200000 20
70440 82302 64483 96767 51485 ...

correct output
-1 8 6 5 5 7 6 7 6 6 8 5 6 4 5...

user output
(empty)

Test 7

Group: 3

Verdict:

input
100000 200000 100
68738 37820 55519 77758 46482 ...

correct output
4 5 5 5 5 4 6 -1 5 4 5 6 4 5 5...

user output
(empty)

Test 8

Group: 3

Verdict:

input
100000 200000 100000
47137 80137 73347 78145 9205 6...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 9

Group: 2, 3

Verdict:

input
100000 99999 1
44158
1 2
2 3
3 4
...

correct output
44157 44156 44155 44154 44153 ...

user output
(empty)

Test 10

Group: 2, 3

Verdict:

input
100000 99999 20
44158 25720 84658 90057 99607 ...

correct output
361 360 359 358 357 356 355 35...

user output
(empty)

Test 11

Group: 2, 3

Verdict:

input
100000 99999 100000
44158 25720 84658 90057 99607 ...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000 99999 3
99998 99999 100000
1 2
1 3
1 4
...

correct output
33333 33332 33332 33332 33331 ...

user output
(empty)

Test 13

Group: 3

Verdict:

input
100000 99999 300
99701 99702 99703 99704 99705 ...

correct output
333 333 333 333 333 333 333 33...

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000 99999 30000
70001 70002 70003 70004 70005 ...

correct output
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 ...

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000 0 100000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...

user output
(empty)

Test 16

Group: 3

Verdict:

input
100000 100000 2
1 50001
1 2
2 3
3 4
...

correct output
50000 1 2 3 4 5 6 7 8 9 10 11 ...

user output
(empty)