結果

問題 No.812 Change of Class
ユーザー WarToksWarToks
提出日時 2019-04-19 11:48:25
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 4,000 ms
コード長 4,000 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 109,356 KB
実行使用メモリ 9,368 KB
最終ジャッジ日時 2023-08-20 12:21:36
合計ジャッジ時間 8,886 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
7,624 KB
testcase_01 AC 10 ms
4,376 KB
testcase_02 AC 30 ms
5,512 KB
testcase_03 AC 64 ms
8,424 KB
testcase_04 AC 56 ms
7,572 KB
testcase_05 AC 166 ms
7,960 KB
testcase_06 AC 146 ms
6,976 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 139 ms
8,428 KB
testcase_10 AC 149 ms
8,344 KB
testcase_11 AC 11 ms
6,308 KB
testcase_12 AC 90 ms
8,284 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 1 ms
4,384 KB
testcase_15 AC 103 ms
6,752 KB
testcase_16 AC 7 ms
4,376 KB
testcase_17 AC 91 ms
7,068 KB
testcase_18 AC 71 ms
5,776 KB
testcase_19 AC 79 ms
6,336 KB
testcase_20 AC 159 ms
8,440 KB
testcase_21 AC 65 ms
5,732 KB
testcase_22 AC 28 ms
4,464 KB
testcase_23 AC 6 ms
4,380 KB
testcase_24 AC 9 ms
4,376 KB
testcase_25 AC 22 ms
4,380 KB
testcase_26 AC 126 ms
7,360 KB
testcase_27 AC 113 ms
6,772 KB
testcase_28 AC 77 ms
6,372 KB
testcase_29 AC 18 ms
4,380 KB
testcase_30 AC 101 ms
6,900 KB
testcase_31 AC 87 ms
6,340 KB
testcase_32 AC 36 ms
4,668 KB
testcase_33 AC 106 ms
7,096 KB
testcase_34 AC 8 ms
4,380 KB
testcase_35 AC 18 ms
4,380 KB
testcase_36 AC 8 ms
4,380 KB
testcase_37 AC 49 ms
5,028 KB
testcase_38 AC 5 ms
4,496 KB
testcase_39 AC 51 ms
4,984 KB
testcase_40 AC 11 ms
4,380 KB
testcase_41 AC 4 ms
4,380 KB
testcase_42 AC 106 ms
6,792 KB
testcase_43 AC 20 ms
5,704 KB
testcase_44 AC 75 ms
5,844 KB
testcase_45 AC 8 ms
4,380 KB
testcase_46 AC 18 ms
5,804 KB
testcase_47 AC 74 ms
5,856 KB
testcase_48 AC 77 ms
6,304 KB
testcase_49 AC 20 ms
4,384 KB
testcase_50 AC 2 ms
4,376 KB
testcase_51 AC 21 ms
4,488 KB
testcase_52 AC 40 ms
6,104 KB
testcase_53 AC 13 ms
4,380 KB
testcase_54 AC 11 ms
4,376 KB
testcase_55 AC 51 ms
7,592 KB
testcase_56 AC 59 ms
8,276 KB
testcase_57 AC 61 ms
8,820 KB
testcase_58 AC 32 ms
6,028 KB
testcase_59 AC 67 ms
9,368 KB
testcase_60 AC 2 ms
4,380 KB
testcase_61 AC 2 ms
4,376 KB
testcase_62 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <list>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <vector>
#include <algorithm>
#include <map>
#include <chrono>
#include <math.h>
using namespace std;

using lli = long long int;
using Vint = std::vector<int>;
using Vlli = std::vector<lli>;
using Wint = std::vector<Vint>;
using Wlli = std::vector<Vlli>;
using Vbool = std::vector<bool>;
using pii = std::pair<int, int>;
using pll = std::pair<lli, lli>;

constexpr int MOD = 1e9 + 7;
constexpr int INFi = 2e9 + 1;
constexpr lli INFl = (lli)(9e18) + 1;
const vector<pii> DXDY = {std::make_pair(1, 0), std::make_pair(-1, 0), std::make_pair(0, 1), std::make_pair(0, -1)};
constexpr char BR = '\n';

#define FOR(i, a, b) for(int (i) = (a); (i) < (b); (i)++)
#define FOReq(i, a, b) for(int (i) = (a); (i) <= (b); (i)++)
#define rFOR(i, a, b) for(int (i) = (b); (i) >= (a); i--)
#define FORstep(i, a, b, step) for(int (i) = (a); i < (b); i += (step))
#define REP(i, n) FOR(i, 0, n)
#define rREP(i, n) rFOR(i, 0, (n-1))
#define vREP(ele, vec) for(auto &(ele) : (vec))
#define vREPcopy(ele, vec) for(auto (ele) : (vec))
#define SORT(A) std::sort((A).begin(), (A).end())
// 座標圧縮 (for vector) : ソートしてから使うのが一般的 ; SORT(A) => COORDINATE_COMPRESSION(A)
#define COORDINATE_COMPRESSION(A) (A).erase(unique((A).begin(),(A).end()),(A).end())



template <class T> inline int argmin(std::vector<T> vec){return min_element(vec.begin(), vec.end()) - vec.begin();}
template <class T> inline int argmax(std::vector<T> vec){return max_element(vec.begin(), vec.end()) - vec.begin();}
template <class T> inline void chmax(T &a, T b){a = max(a, b);}
template <class T> inline void chmin(T &a, T b){a = min(a, b);}
inline int toInt(string &s){int res = 0; for(char a : s) res = 10 * res + (a - '0'); return res;}
inline int toInt(const string s){int res = 0; for(char a : s) res = 10 * res + (a - '0'); return res;}
inline long long int toLong(string &s){lli res = 0; for(char a : s) res = 10 * res + (a - '0'); return res;}
inline long long int toLong(const string s){lli res = 0; for(char a : s) res = 10 * res + (a - '0'); return res;}
template <class T> inline std::string toString(T n){
  if(n == 0) return "0";
  std::string res = "";
  if(n < 0){n = -n;while(n != 0){res += (char)(n % 10 + '0'); n /= 10;}
  std::reverse(res.begin(), res.end()); return '-' + res;}
  while(n != 0){res += (char)(n % 10 + '0'); n /= 10;} std::reverse(res.begin(), res.end()); return res;
}

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


inline int change(int k){
  int res = 0;
  while((1 << res) < k) res++;
  return res;
}

class Do_you_wanna_be_a_friend_of_mine{
private:
  const int n, m;
  std::vector<Vint> Friends;
  std::vector<bool> HasntVisited;
public:
  Do_you_wanna_be_a_friend_of_mine(int nn, int mm): n(nn), m(mm){
    Friends.resize(n, Vint(0));
    HasntVisited.resize(n);
  }
  ~Do_you_wanna_be_a_friend_of_mine(void){};
  void getFriends(void){
    int p, q;
    REP(i, m){
      scanf("%d%d", &p, &q); p--; q--;
      Friends.at(p).emplace_back(q);
      Friends.at(q).emplace_back(p);
    }
  }
  std::pair<int, int> solve(int a){
    a--; REP(i, n) HasntVisited[i] = true;
    int numb = -1, height;
    std::queue<std::pair<int, int>> dfs;
    HasntVisited.at(a) = false;
    dfs.push(make_pair(a, 0));
    int now;
    while(not dfs.empty()){
      std::tie(now, height) = dfs.front(); dfs.pop();
      vREP(friend_next, Friends.at(now)) if(HasntVisited.at(friend_next)){
        HasntVisited.at(friend_next) = false;
        dfs.push(make_pair(friend_next, height + 1));
      }
      numb++;
    }

    return make_pair(numb, change(height));
  }
};


int main(void){
  int n, m; scanf("%d%d", &n,&m);
  Do_you_wanna_be_a_friend_of_mine solver(n, m);
  solver.getFriends();
  int a, q, s, t;
  scanf("%d", &q);
  REP(_, q){
    scanf("%d", &a);
    std::tie(s, t) = solver.solve(a);
    printf("%d %d\n", s, t);
  }
  return 0;
}
0