답안 #964880

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
964880 2024-04-17T16:53:56 Z 75_yabuki Firefighting (NOI20_firefighting) C++14
3 / 100
196 ms 32428 KB
#define _D321EBUG
// #include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
// using namespace atcoder;
#define endl "\n"
#define fi first
#define se second
#define all(x) (x).begin(),(x).end() 
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
typedef vector<int> vi;
typedef vector<pii> vii;
const long double pi = acos(-1.0);
const int INF = 1987654321;
const ll LLINF = 1e18;
const double eps = 1e-9;
template<class T>bool chmax(T& a, const T& b) { if (a <= b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T& a, const T& b) { if (b <= a) { a = b; return 1; } return 0; }
////////////////////////

// #ifndef ONLINE_JUDGE
// #include "template.cpp"
// #else
// #define debug(...)
// #define debugArr(...)
// #endif

////////////////////////

vector<pll> adj[300004];
int main(){
#ifdef _DEBUG   
    freopen ("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif      
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    
    ll N,K;cin>>N>>K;
    for(int i = 0; i < N-1;i++){
        ll u,v, c;cin>>u>>v>>c;
        adj[u].push_back({v, c});
        adj[v].push_back({u, c});
    }
    cout<<N<<endl;
    for(int i=1;i<=N;i++) cout<<i<<" ";
    
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 182 ms 32136 KB Output is correct
2 Correct 196 ms 32428 KB Output is correct
3 Correct 51 ms 16212 KB Output is correct
4 Correct 179 ms 31360 KB Output is correct
5 Correct 2 ms 7512 KB Output is correct
6 Correct 2 ms 7260 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 7508 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 7260 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 160 ms 32172 KB Output is correct
2 Incorrect 83 ms 20224 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 7516 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 184 ms 31260 KB Output isn't correct
2 Halted 0 ms 0 KB -