제출 #333938

#제출 시각아이디문제언어결과실행 시간메모리
333938daniel920712ICC (CEOI16_icc)C++14
0 / 100
457 ms704 KiB
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <set> #include <map> #include <vector> #include <queue> #include <algorithm> #include <utility> #include <time.h> #include <assert.h> #include "icc.h" using namespace std; bool have[1005][1005]={0}; int a[1005],b[1005]; void run(int N) { int ok=1,i,j,k,x,y,t1,t2,con=0; for(i=1;i<N;i++) { for(j=1;j<=N;j++) { t1=0; t2=0; a[0]=j; for(k=j+1;k<=N;k++) { b[0]=k; if(j==k) continue; //if(have[j][k]) continue; con++; if(query(1,1,a,b)) { x=j; y=k; } } } setRoad(x,y); //have[x][y]=1; //have[y][x]=1; } }

컴파일 시 표준 에러 (stderr) 메시지

icc.cpp: In function 'void run(int)':
icc.cpp:19:9: warning: unused variable 'ok' [-Wunused-variable]
   19 |     int ok=1,i,j,k,x,y,t1,t2,con=0;
      |         ^~
icc.cpp:19:24: warning: variable 't1' set but not used [-Wunused-but-set-variable]
   19 |     int ok=1,i,j,k,x,y,t1,t2,con=0;
      |                        ^~
icc.cpp:19:27: warning: variable 't2' set but not used [-Wunused-but-set-variable]
   19 |     int ok=1,i,j,k,x,y,t1,t2,con=0;
      |                           ^~
icc.cpp:41:16: warning: 'y' may be used uninitialized in this function [-Wmaybe-uninitialized]
   41 |         setRoad(x,y);
      |         ~~~~~~~^~~~~
icc.cpp:41:16: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
#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...