Submission #16843

#TimeUsernameProblemLanguageResultExecution timeMemory
16843gs14004탐사 (KOI13_probe)C++14
0 / 19
3 ms380 KiB
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <limits.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <algorithm>
#include <string>
#include <functional>
#include <vector>
#include <numeric>
#include <deque>
#include <utility>
#include <bitset>
#include <iostream>
using namespace std;
typedef long long lint;
typedef long double llf;
typedef pair<int, int> pi;

int adj[105][105];
int n, k;

map<pi, int> mp;

int main(){
	scanf("%d %d",&n,&k);
	memset(adj,0x3f,sizeof(adj));
	for(int i=1; i<=n; i++){
		adj[i][i+1] = 1;
		adj[i+1][i] = 0;
	}
	for(int i=0; i<k; i++){
		int s, e, x;
		scanf("%d %d %d",&s,&e,&x);
		if(mp.find(pi(s, e)) != mp.end()){
			if(mp[pi(s, e)] != x){
				puts("NONE");
				return 0;
			}
			else continue;
		}
		mp[pi(s, e)] = x;
		adj[s-1][e] = x;
	}
	for(int i=0; i<=n; i++){
		for(int j=0; j<=n; j++){
			for(int k=0; k<=n; k++){
				adj[j][k] = min(adj[j][k], adj[j][i] + adj[i][k]);
			}
		}
	}
	for(int i=0; i<=n; i++){
		if(adj[i][i] < 0){
			puts("NONE");
			return 0;
		}
	}
	for(int i=1; i<=n; i++){
		putchar(adj[i-1][i] ? '#' : '-');
	}
}

Compilation message (stderr)

probe.cpp: In function 'int main()':
probe.cpp:30:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d",&n,&k);
  ~~~~~^~~~~~~~~~~~~~~
probe.cpp:38:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d %d",&s,&e,&x);
   ~~~~~^~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...