結果

問題 No.479 頂点は要らない
ユーザー ikdikd
提出日時 2017-01-28 02:27:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 88 ms / 1,500 ms
コード長 901 bytes
コンパイル時間 741 ms
コンパイル使用メモリ 63,740 KB
実行使用メモリ 10,228 KB
最終ジャッジ日時 2024-06-06 07:16:52
合計ジャッジ時間 3,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 3 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 88 ms
9,344 KB
testcase_27 AC 87 ms
9,344 KB
testcase_28 AC 75 ms
10,228 KB
testcase_29 AC 73 ms
7,604 KB
testcase_30 AC 73 ms
7,552 KB
testcase_31 AC 73 ms
7,552 KB
testcase_32 AC 73 ms
7,476 KB
testcase_33 AC 73 ms
7,680 KB
testcase_34 AC 84 ms
7,960 KB
testcase_35 AC 72 ms
6,940 KB
testcase_36 AC 40 ms
6,944 KB
testcase_37 AC 76 ms
8,288 KB
testcase_38 AC 67 ms
7,244 KB
testcase_39 AC 45 ms
6,944 KB
testcase_40 AC 54 ms
7,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:18:36: warning: narrowing conversion of ‘g[b].std::vector<E>::size()’ from ‘std::vector<E>::size_type’ {aka ‘long unsigned int’} to ‘int’ [-Wnarrowing]
   18 |       g[a].push_back(E{b, g[b].size()});
      |                           ~~~~~~~~~^~
main.cpp:19:38: warning: narrowing conversion of ‘(g[a].std::vector<E>::size() - 1)’ from ‘std::vector<E>::size_type’ {aka ‘long unsigned int’} to ‘int’ [-Wnarrowing]
   19 |       g[b].push_back(E{a, g[a].size()-1});
      |                           ~~~~~~~~~~~^~

ソースコード

diff #

#include<iostream>
#include<vector>

using namespace std;

struct E{
   int to, rev;
};

signed main(){

   int N, M;
   cin>> N>> M;
   vector<E> g[N];
   for(int i=0; i<M; i++){
      int a, b;
      cin>> a>> b;
      g[a].push_back(E{b, g[b].size()});
      g[b].push_back(E{a, g[a].size()-1});
   }

   vector<int> v;
   for(int n=N-1; n>=0; n--){
      bool y=false;
      for(auto e: g[n]){
         y|=(e.to>n);
      }
      v.push_back(y);
      if(y){
         for(auto &e: g[n]){
            if(e.to<0) continue;
            g[e.to][e.rev].to=-1;
            e.to=-1;
         }
      }else{

      }
   }

   bool Lz=true;
   for(int d: v){
      if(d==0){
         if(Lz){

         }else{
            cout<< d;
         }
      }else{
         if(Lz){
            cout<< d;
            Lz=false;
         }else{
            cout<< d;
         }
      }
   }cout<< endl;

   return 0;
}
0